ProxMenux/web/next.config.js

12 lines
209 B
JavaScript
Raw Normal View History

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