mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-27 20:06:52 +00:00
31 lines
792 B
JavaScript
31 lines
792 B
JavaScript
import { fileURLToPath } from 'url'
|
|
import { dirname, join } from 'path'
|
|
|
|
const __filename = fileURLToPath(import.meta.url)
|
|
const __dirname = dirname(__filename)
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "raw.githubusercontent.com",
|
|
pathname: "/MacRimi/ProxMenux/main/images/**",
|
|
},
|
|
],
|
|
},
|
|
assetPrefix: "/ProxMenux/",
|
|
basePath: "/ProxMenux",
|
|
staticPageGenerationTimeout: 180,
|
|
webpack: (config, { isServer }) => {
|
|
config.resolve.alias["@guides"] = join(__dirname, "..", "guides")
|
|
config.resolve.alias["@changelog"] = join(__dirname, "..", "CHANGELOG.md")
|
|
return config
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|