ProxMenux/web/next.config.js

13 lines
234 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 18:58:50 +01:00
trailingSlash: true,
};
2025-02-13 16:46:10 +01:00
2025-02-13 18:58:50 +01:00
module.exports = nextConfig;