mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export", // Forces static export for GitHub Pages
|
|
trailingSlash: true, // Fixes route issues
|
|
images: {
|
|
unoptimized: true, // Fixes image loading issues on GitHub Pages
|
|
},
|
|
assetPrefix: process.env.NODE_ENV === "production" ? "/ProxMenux" : "",
|
|
}
|
|
|
|
module.exports = nextConfig
|