We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c2496 commit 24417feCopy full SHA for 24417fe
web/next.config.mjs
@@ -4,9 +4,16 @@ import { dirname, join } from 'path'
4
const __filename = fileURLToPath(import.meta.url)
5
const __dirname = dirname(__filename)
6
7
+
8
/** @type {import('next').NextConfig} */
9
const nextConfig = {
10
output: "export",
11
+ eslint: {
12
+ ignoreDuringBuilds: true,
13
+ },
14
+ typescript: {
15
+ ignoreBuildErrors: true,
16
17
images: {
18
unoptimized: true,
19
remotePatterns: [
@@ -17,8 +24,6 @@ const nextConfig = {
24
},
25
],
26
20
- assetPrefix: "/ProxMenux/",
21
- basePath: "/ProxMenux",
22
27
staticPageGenerationTimeout: 180,
23
28
webpack: (config, { isServer }) => {
29
config.resolve.alias["@guides"] = join(__dirname, "..", "guides")
0 commit comments