serp-chat / next.config.js
matthoffner's picture
Update next.config.js
9c8f715
raw
history blame
212 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
standalone: true,
images: {
domains: ["upload.wikimedia.org"],
},
};
module.exports = nextConfig;