data/method/chatgpt_web/ChatGPT-Next-Web-main/next.config.js

19 lines
297 B
JavaScript
Raw Permalink Normal View History

2024-01-29 10:44:43 +08:00
/** @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;