namecard/next.config.js
2025-08-19 16:26:51 +08:00

14 lines
254 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;