mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
22 lines
413 B
JavaScript
22 lines
413 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "/ProxMenux/",
|
|
basePath: "/ProxMenux",
|
|
distDir: "out",
|
|
webpack: (config, { isServer }) => {
|
|
if (!isServer) {
|
|
config.resolve.fallback = {
|
|
...config.resolve.fallback,
|
|
fs: false,
|
|
}
|
|
}
|
|
return config
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|