mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
13 lines
234 B
JavaScript
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;
|