mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	* refactor: Enhance ScriptAccordion and Sidebar components to support selectedCategory state * lint * chore: Add ESLint configuration to ignore errors during builds in next.config.mjs
		
			
				
	
	
		
			30 lines
		
	
	
		
			436 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			436 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('next').NextConfig} */
 | 
						|
const nextConfig = {
 | 
						|
  webpack: (config) => {
 | 
						|
    config.resolve.alias.canvas = false;
 | 
						|
 | 
						|
    return config;
 | 
						|
  },
 | 
						|
  images: {
 | 
						|
    remotePatterns: [
 | 
						|
      {
 | 
						|
        protocol: "https",
 | 
						|
        hostname: "**",
 | 
						|
      },
 | 
						|
    ],
 | 
						|
  },
 | 
						|
 | 
						|
  env: {
 | 
						|
    BASE_PATH: "ProxmoxVE",
 | 
						|
  },
 | 
						|
 | 
						|
  eslint: {
 | 
						|
    ignoreDuringBuilds: true,
 | 
						|
  },
 | 
						|
 | 
						|
  output: "export",
 | 
						|
  basePath: `/ProxmoxVE`,
 | 
						|
};
 | 
						|
 | 
						|
export default nextConfig;
 |