mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-10 19:05:09 +00:00
26 lines
388 B
JavaScript
26 lines
388 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;
|