Files
Mckay Wrigley cf93a32851 stash
2023-03-22 10:44:48 -06:00

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;