diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..6078b15 --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,21 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + webpack: (config) => { + config.resolve.alias.canvas = false; + + return config; + }, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "**", + }, + ], + }, + + output: "export", + // basePath: "/proxmox-helper-scripts", +}; + +export default nextConfig;