16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
webpack: (config) => {
|
|
config.resolve.fallback = { fs: false };
|
|
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |