Files
fintrack/next.config.mjs
2025-12-01 08:14:04 +01:00

13 lines
207 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
output: 'standalone',
};
export default nextConfig;