FEAT(config): add /portfolio basepath

- Set basePath to '/portfolio' for proper path-based routing
- Set assetPrefix to '/portfolio' for static asset loading
- This allows the app to work correctly under /portfolio path
This commit is contained in:
2025-11-24 00:06:44 +09:00
parent 913575ecc0
commit c468aa2ca1

View File

@@ -2,6 +2,8 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
basePath: '/portfolio',
assetPrefix: '/portfolio',
};
export default nextConfig;