875743369d
- Add multi-stage Dockerfile for Next.js standalone build - Add docker-compose.yml with app and MySQL 8.0 services - Add .dockerignore for optimized builds - Update next.config.ts with standalone output
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|