/** @type {import('next').NextConfig} */ const nextConfig = { webpack: (config) => { config.resolve.alias.canvas = false; return config; }, images: { remotePatterns: [ { protocol: "https", hostname: "**", }, ], }, output: "export", basePath: "/ProxmoxVE", }; export default nextConfig;