namecard/next.config.js
2025-08-19 11:49:57 +08:00

14 lines
232 B
JavaScript

/** @type {import('next').NextConfig} */
const basePath = process.env.BASE_PATH || ''
const nextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true
},
basePath
}
module.exports = nextConfig