25 lines
576 B
JSON
25 lines
576 B
JSON
{
|
|
"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",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|