FreeGpt / next.config.js
Daniton's picture
Duplicate from yxmnjxzx/chatbot-mini
5d4afba
raw
history blame
353 Bytes
const { i18n } = require('./next-i18next.config');
/** @type {import('next').NextConfig} */
const nextConfig = {
i18n,
output: "standalone",
reactStrictMode: true,
webpack(config, { isServer, dev }) {
config.experiments = {
asyncWebAssembly: true,
layers: true,
};
return config;
},
};
module.exports = nextConfig;