lume/next.config.js
2023-02-21 14:58:47 +07:00

14 lines
301 B
JavaScript

const removeImports = require('next-remove-imports')();
module.exports = removeImports({
reactStrictMode: false,
swcMinify: true,
images: {
unoptimized: true,
},
webpack: (config) => {
config.experiments = { ...config.experiments, topLevelAwait: true };
return config;
},
});