Files
ProxmoxVE/frontend/next.config.mjs
T

26 lines
388 B
JavaScript
Raw Permalink Normal View History

2024-11-04 23:55:08 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.resolve.alias.canvas = false;
return config;
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
env: {
BASE_PATH: "ProxmoxVE",
},
2024-11-04 23:55:08 +01:00
output: "export",
basePath: `/ProxmoxVE`,
2024-11-04 23:55:08 +01:00
};
export default nextConfig;