From 24417feba36af155eaa6428cabcd511277ce7d17 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sat, 13 Dec 2025 19:09:26 +0100 Subject: [PATCH] Update next.config.mjs --- web/next.config.mjs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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")