Files
imphnen-frontend-service/apps/landing/project.json
T

23 lines
583 B
JSON

{
"name": "landing",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/landing/src",
"projectType": "application",
"tags": [],
"targets": {
"dev": {
"command": "npx astro dev",
"options": { "cwd": "apps/landing" }
},
"build": {
"command": "npx astro build --outDir ../../dist/apps/landing",
"options": { "cwd": "apps/landing" },
"outputs": ["{workspaceRoot}/dist/apps/landing"]
},
"preview": {
"command": "npx astro preview",
"options": { "cwd": "apps/landing" }
}
}
}