ChatGPT-Next-Web/next.config.js
lishiyun1227 e3f2d8e570 add
2023-04-17 14:47:10 +08:00

19 lines
297 B
JavaScript

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