chore: cleanup nextjs project

This commit is contained in:
ArraysID
2025-04-26 21:13:19 +07:00
parent b389235971
commit 259262a1ef
10 changed files with 194 additions and 639 deletions
+16 -1
View File
@@ -5,5 +5,20 @@
"projectType": "application",
"tags": [],
"// targets": "to see all targets run: nx show project landing --web",
"targets": {}
"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"
}
}
}
}