mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-27 20:06:52 +00:00
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "/ProxMenux/",
|
|
basePath: "/ProxMenux",
|
|
distDir: "out",
|
|
}
|
|
|
|
module.exports = nextConfig
|
|
|