ProxMenux/web/next.config.js
2025-02-13 18:58:50 +01:00

13 lines
234 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
unoptimized: true,
},
assetPrefix: '/ProxMenux/',
basePath: '/ProxMenux',
trailingSlash: true,
};
module.exports = nextConfig;