13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
// Pre-existing type errors — tracked separately; do not block production builds
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = nextConfig;
|