mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 16:23:41 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 |