forked from XiaoMo/ChatGPT-Next-Web
19 lines
297 B
JavaScript
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;
|