Files
Proxmox-arm64/frontend/next.config.mjs
2025-01-09 22:11:35 +10:00

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