mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-17 09:46:05 +00:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
output: "export",
|
||
|
|
images: {
|
||
|
|
unoptimized: true,
|
||
|
|
},
|
||
|
|
assetPrefix: "/ProxMenux/",
|
||
|
|
basePath: "/ProxMenux",
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = nextConfig
|
||
|
|
|