Files
recall/next.config.ts
Daniel Arroyo 13ee0f9922 feat: Add Dockerfile and docker-compose for deployment
- Multi-stage Dockerfile for optimized image size
- docker-compose.yml for easy local deployment
- Enable standalone output mode for Docker support
2026-03-23 22:04:26 -03:00

8 lines
129 B
TypeScript

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