Files
blog_legacy/next.config.ts
Dave 1e95de21f7
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 50s
Test new deployment strategy
2025-09-09 23:53:21 +02:00

13 lines
267 B
TypeScript

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