fix: resolve Docker build failures and configuration issues

Add missing dependencies, fix Next.js config, update Docker Compose, and configure Tailwind CSS.

#VERCEL_SKIP

Co-authored-by: Anders Lehmann Pier <3219386+AndersPier@users.noreply.github.com>
This commit is contained in:
v0
2025-06-19 21:53:56 +00:00
parent efdedf1a34
commit 8e89f35e92
17 changed files with 3624 additions and 1054 deletions

View File

@@ -1,12 +0,0 @@
import { NextResponse } from "next/server"
export async function GET() {
return NextResponse.json(
{
status: "healthy",
timestamp: new Date().toISOString(),
service: "markdown-editor",
},
{ status: 200 },
)
}