Files
2026-05-10 11:18:27 +02:00

15 lines
229 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true,
},
turbopack: {
root: __dirname,
},
};
export default nextConfig;