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
This commit is contained in:
2025-11-24 00:07:03 +09:00
parent 5584aaa2db
commit c5de8f3242

View File

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