|
|
@ -1,6 +1,21 @@ |
|
|
|
/** @type {import('next').NextConfig} */ |
|
|
|
const nextConfig = { |
|
|
|
reactStrictMode: false, |
|
|
|
|
|
|
|
|
|
|
|
module.exports = { |
|
|
|
typescript: { |
|
|
|
// !! WARN !!
|
|
|
|
// Dangerously allow production builds to successfully complete even if
|
|
|
|
// your project has type errors.
|
|
|
|
// !! WARN !!
|
|
|
|
ignoreBuildErrors: true, |
|
|
|
}, |
|
|
|
ignoreBuildErrors: true, |
|
|
|
eslint: { |
|
|
|
ignoreDuringBuilds: true, |
|
|
|
}, |
|
|
|
typescript: { |
|
|
|
ignoreBuildErrors: true, |
|
|
|
}, |
|
|
|
images: { |
|
|
|
remotePatterns: [ |
|
|
|
{ |
|
|
@ -35,15 +50,22 @@ const nextConfig = { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
typescript: { |
|
|
|
ignoreBuildErrors: true, |
|
|
|
}, |
|
|
|
eslint: { |
|
|
|
ignoreDuringBuilds: true, |
|
|
|
}, |
|
|
|
trailingSlash: true, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
module.exports = nextConfig; |
|
|
|
|
|
|
|
// const nextConfig = {
|
|
|
|
// reactStrictMode: false,
|
|
|
|
// ignoreBuildErrors: true,
|
|
|
|
// typescript: {
|
|
|
|
// ignoreBuildErrors: true,
|
|
|
|
// },
|
|
|
|
// eslint: {
|
|
|
|
// ignoreDuringBuilds: true,
|
|
|
|
// },
|
|
|
|
// trailingSlash: true,
|
|
|
|
// };
|
|
|
|
|
|
|
|
// module.exports = nextConfig;
|
|
|
|
|
|
|
|
|