ProxMenux/web/next.config.js

14 lines
228 B
JavaScript
Raw Normal View History

2025-02-13 16:46:10 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
images: {
unoptimized: true,
},
assetPrefix: "/ProxMenux/",
basePath: "/ProxMenux",
distDir: "out",
}
module.exports = nextConfig
2025-02-13 17:28:49 +01:00