Files
jovies/services/nextjs/next.config.mjs
Mayne0213 c5de8f3242 FEAT(config): add basepath for /jovies
- Set basePath to '/jovies' for proper path-based routing
- Set assetPrefix to '/jovies' for static asset loading
- This allows the app to work correctly under /jovies path
2025-11-24 00:07:03 +09:00

9 lines
166 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
basePath: '/jovies',
assetPrefix: '/jovies',
};
export default nextConfig;