diff --git a/web/next.config.mjs b/web/next.config.mjs index 3445b24..ebd5cf5 100644 --- a/web/next.config.mjs +++ b/web/next.config.mjs @@ -4,9 +4,16 @@ import { dirname, join } from 'path' const __filename = fileURLToPath(import.meta.url) const __dirname = dirname(__filename) + /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", + eslint: { + ignoreDuringBuilds: true, + }, + typescript: { + ignoreBuildErrors: true, + }, images: { unoptimized: true, remotePatterns: [ @@ -17,8 +24,6 @@ const nextConfig = { }, ], }, - assetPrefix: "/ProxMenux/", - basePath: "/ProxMenux", staticPageGenerationTimeout: 180, webpack: (config, { isServer }) => { config.resolve.alias["@guides"] = join(__dirname, "..", "guides")