ChatGPT-Next-Web/next.config.js
caiwendi88@gmail.com 377ed294d9 新版本
2023-04-18 11:38:01 +08:00

21 lines
340 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compress: true,
experimental: {
appDir: true,
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
output: "standalone",
};
module.exports = nextConfig;