This commit is contained in:
Mckay Wrigley
2023-03-22 10:44:48 -06:00
parent cec0735403
commit cf93a32851
27 changed files with 3569 additions and 2 deletions
+4 -2
View File
@@ -1,15 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
webpack(config, { isServer, dev }) {
config.experiments = {
asyncWebAssembly: true,
layers: true,
layers: true
};
return config;
},
images: {
unoptimized: true
}
};
module.exports = nextConfig;