Files
portfolio/services/nextjs/next.config.ts
Mayne0213 c177622c2d 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:17 +09:00

8 lines
129 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
};
export default nextConfig;