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

25 lines
576 B
JSON
Raw Normal View History

2025-04-26 20:32:58 +07:00
{
"name": "landing",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/landing",
"projectType": "application",
"tags": [],
"// targets": "to see all targets run: nx show project landing --web",
2025-04-27 09:31:24 +07:00
"targets": {
"serve": {
"executor": "@nx/next:server",
"options": {
"buildTarget": "landing:build",
"dev": true
}
},
"build": {
"executor": "@nx/next:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/landing"
}
}
}
2025-04-26 20:32:58 +07:00
}