Files
lume/next.config.js
T

21 lines
357 B
JavaScript

/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
unoptimized: true,
},
typescript: {
ignoreBuildErrors: true,
},
webpack: (config) => {
config.experiments = { ...config.experiments, topLevelAwait: true };
return config;
},
};
module.exports = nextConfig;