Files
supervisor-ui/next.config.ts
Sebastian Krüger f2d89d8333
All checks were successful
Build and Push Docker Image to Gitea / build-and-push (push) Successful in 1m38s
fix: enable standalone output and remove public directory copy
- Re-enable output: 'standalone' in next.config.ts for Docker builds
- Remove public directory copy from Dockerfile (not needed for this project)
- Standalone mode works with force-dynamic routing to prevent SSR issues

Fixes Gitea Actions build failure where .next/standalone was not found
2025-11-23 19:00:34 +01:00

9 lines
154 B
TypeScript

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