Spaces:
Paused
Paused
File size: 364 Bytes
054d282 82bebab 29df9bc 054d282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
output: "standalone",
webpack(config, { isServer, dev }) {
config.experiments = {
asyncWebAssembly: true,
layers: true,
};
return config;
},
images: {
domains: ["upload.wikimedia.org"],
},
};
module.exports = nextConfig;
|