/** @type {import('next').NextConfig} */ const nextConfig = { output: "export", images: { unoptimized: true, }, assetPrefix: "/ProxMenux/", basePath: "/ProxMenux", distDir: "out", webpack: (config, { isServer }) => { if (!isServer) { config.resolve.fallback = { ...config.resolve.fallback, fs: false, } } return config }, } module.exports = nextConfig