ProxMenux/web2/next.config.js

12 lines
359 B
JavaScript
Raw Normal View History

2025-02-13 16:46:10 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2025-02-13 22:55:22 +01:00
output: "export", // Forces static export for GitHub Pages
trailingSlash: true, // Fixes route issues
2025-02-13 16:46:10 +01:00
images: {
2025-02-13 22:55:22 +01:00
unoptimized: true, // Fixes image loading issues on GitHub Pages
2025-02-13 16:46:10 +01:00
},
2025-02-13 22:55:22 +01:00
assetPrefix: process.env.NODE_ENV === "production" ? "/ProxMenux" : "",
}
2025-02-13 16:46:10 +01:00
2025-02-13 22:55:22 +01:00
module.exports = nextConfig