c9e22ec117
Make the marketing site deployable standalone from apps/website (the repo has no root package.json, so the build must run in this subdir — set Base Directory to apps/website in Coolify). - Add a multi-stage Dockerfile (pnpm build -> node .output/server/index.mjs, port 3000, NUXT_PUBLIC_SITE_URL default) + .dockerignore. - Add a "start" script for the Nixpacks path (Nuxt SSR has no default start). - Guard the bind-mount-only /shared-packages components dir with existsSync so standalone builds don't warn on the missing path (the site uses no shared component).
28 lines
704 B
JSON
28 lines
704 B
JSON
{
|
|
"name": "@dezky/website",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Dezky public marketing site — dezky.eu landing pages (Nuxt 4)",
|
|
"scripts": {
|
|
"dev": "TMPDIR=/tmp nuxt dev --host 0.0.0.0 --port 3000",
|
|
"build": "nuxt build",
|
|
"start": "node .output/server/index.mjs",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"typecheck": "nuxt typecheck",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@nuxtjs/i18n": "^10.4.0",
|
|
"nuxt": "^4.4.7",
|
|
"vue": "^3.5.0",
|
|
"vue-router": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.6.0",
|
|
"vue-tsc": "^3.2.6"
|
|
},
|
|
"packageManager": "pnpm@9.12.0"
|
|
}
|