ProxmoxVE/frontend/next.config.mjs

26 lines
389 B
JavaScript
Raw Normal View History

/** @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",
2024-11-06 21:26:26 +00:00
basePath: "/ProxmoxVE",
};
export default nextConfig;