Files
blog_bricked/next.config.ts
2025-09-15 10:37:21 +02:00

12 lines
242 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
...(process.env.NODE_ENV === 'production' && {
output: 'export',
images: { unoptimized: true },
trailingSlash: true,
}),
};
export default nextConfig;