18 lines
305 B
JavaScript
18 lines
305 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
webpack(config, { isServer, dev }) {
|
|
config.experiments = {
|
|
asyncWebAssembly: true,
|
|
layers: true
|
|
};
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
unoptimized: true
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|