Skip to content

Commit 24417fe

Browse files
committed
Update next.config.mjs
1 parent f8c2496 commit 24417fe

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

web/next.config.mjs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@ import { dirname, join } from 'path'
44
const __filename = fileURLToPath(import.meta.url)
55
const __dirname = dirname(__filename)
66

7+
78
/** @type {import('next').NextConfig} */
89
const nextConfig = {
910
output: "export",
11+
eslint: {
12+
ignoreDuringBuilds: true,
13+
},
14+
typescript: {
15+
ignoreBuildErrors: true,
16+
},
1017
images: {
1118
unoptimized: true,
1219
remotePatterns: [
@@ -17,8 +24,6 @@ const nextConfig = {
1724
},
1825
],
1926
},
20-
assetPrefix: "/ProxMenux/",
21-
basePath: "/ProxMenux",
2227
staticPageGenerationTimeout: 180,
2328
webpack: (config, { isServer }) => {
2429
config.resolve.alias["@guides"] = join(__dirname, "..", "guides")

0 commit comments

Comments
 (0)