ProxmoxVE/frontend/next.config.mjs
2024-11-04 23:55:08 +01:00

22 lines
361 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.resolve.alias.canvas = false;
return config;
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
output: "export",
// basePath: "/proxmox-helper-scripts",
};
export default nextConfig;