jamulix-homepage/next.config.mjs

12 lines
201 B
JavaScript
Raw Normal View History

2026-04-24 17:12:51 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
output: 'export',
}
export default nextConfig