Swap @astrojs/vercel adapter for @astrojs/node standalone (Vercel adapter emits serverless functions; Coolify runs a long-lived Node container). Add web/nixpacks.toml with explicit install/build/start phases. Fix web/pnpm-workspace.yaml: scaffolded without the packages field, which broke pnpm install on any environment that validates workspaces strictly (this was the root cause of the original Coolify build error).
29 lines
602 B
JSON
29 lines
602 B
JSON
{
|
|
"name": "web",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/node": "11.0.3",
|
|
"@astrojs/sitemap": "^3.7.3",
|
|
"astro": "^7.0.9",
|
|
"maplibre-gl": "^5.24.0",
|
|
"pmtiles": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.9",
|
|
"@tailwindcss/vite": "^4.3.2",
|
|
"@types/node": "^26.1.1",
|
|
"sharp": "^0.35.3",
|
|
"tailwindcss": "^4.3.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
} |