ProxmoxVE/frontend/next.config.mjs
2024-11-06 22:26:26 +01:00

26 lines
389 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",
},
output: "export",
basePath: "/ProxmoxVE",
};
export default nextConfig;