- Add Dockerfile with multi-stage build - Add docker-compose.yml with Traefik labels - Add .dockerignore for optimal build context - Update next.config.ts for standalone output - Update DEPLOYMENT.md with Dokploy instructions Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'standalone',
|
|
experimental: {
|
|
optimizePackageImports: ['lucide-react']
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|