import type { NextConfig } from "next"; const basePath = process.env.NEXT_PUBLIC_BASE_PATH || ""; const nextConfig: NextConfig = { output: "export", basePath, assetPrefix: basePath || undefined, env: { NEXT_PUBLIC_BUILD_TIME: new Date().toISOString(), }, }; export default nextConfig;