ChatGPT-Next-Web/next.config.js

17 lines
302 B
JavaScript
Raw Normal View History

2023-03-07 15:23:54 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
2023-03-09 17:01:40 +00:00
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
}); // 针对 SVG 的处理规则
2023-03-07 15:23:54 +00:00
2023-03-09 17:01:40 +00:00
return config;
},
};
module.exports = nextConfig;