REFACTOR(deploy): remove basepath config

- Comment out basePath and assetPrefix settings
- Apps will now work at root path (/) without path prefix
- Prepares for NodePort-based deployment strategy
This commit is contained in:
2025-11-24 00:24:17 +09:00
parent 5253e7d035
commit c177622c2d

View File

@@ -2,11 +2,6 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
basePath: '/portfolio',
assetPrefix: '/portfolio',
images: {
unoptimized: true, // Disable image optimization for standalone builds
},
};
export default nextConfig;