serp-chat / next.config.js
matt HOFFNER
cleanup
29df9bc
raw
history blame contribute delete
364 Bytes
/** @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;