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:18 +09:00
parent c5de8f3242
commit 7768d40f90
2 changed files with 0 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
# Jovies
Movie browsing application with automatic k8s deployment

View File

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