mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
21 lines
550 B
JavaScript
21 lines
550 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "/ProxMenux/",
|
|
basePath: "/ProxMenux",
|
|
staticPageGenerationTimeout: 180, // Aumentamos el tiempo de espera a 180 segundos
|
|
webpack: (config, { isServer }) => {
|
|
const path = require("path")
|
|
config.resolve.alias["@guides"] = path.join(__dirname, "..", "guides")
|
|
config.resolve.alias["@changelog"] = path.join(__dirname, "..", "CHANGELOG.md")
|
|
return config
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|
|
|
|
|