Frontend from upstream

This commit is contained in:
Sam Heinz
2025-01-09 13:59:16 +10:00
parent a1d51ea790
commit 64d78b1ab4
85 changed files with 15585 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/** @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;