Files
jovies/services/nextjs/next.config.mjs
Mayne0213 7768d40f90 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
2025-11-24 00:24:18 +09:00

7 lines
117 B
JavaScript

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