mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-29 16:16:05 +00:00
20 lines
461 B
JavaScript
20 lines
461 B
JavaScript
const path = require("path")
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "/ProxMenux/",
|
|
basePath: "/ProxMenux",
|
|
webpack: (config, { isServer }) => {
|
|
config.resolve.alias["@guides"] = path.join(__dirname, "..", "guides")
|
|
config.resolve.alias["@changelog"] = path.join(__dirname, "..", "CHANGELOG.md")
|
|
return config
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|
|
|