13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
const removeImports = require('next-remove-imports')();
|
|
|
|
module.exports = removeImports({
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
});
|