Update next.config.mjs

This commit is contained in:
MacRimi
2025-12-13 19:09:26 +01:00
parent f8c24964e3
commit 24417feba3

View File

@@ -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")