We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6825b0e commit 449e92cCopy full SHA for 449e92c
apps/demo/project.json
@@ -31,8 +31,12 @@
31
"preview": {
32
"ssr": "src/entry.preview.tsx",
33
"mode": "production"
34
+ },
35
+ "production": {
36
+ "configFile": "apps/demo/adapters/vercel-edge/vite.config.ts"
37
}
- }
38
39
+ "dependsOn": []
40
},
41
42
"executor": "@nx/vite:preview-server",
@@ -70,6 +74,19 @@
70
74
"options": {
71
75
"lintFilePatterns": ["apps/demo/**/*.{ts,tsx,js,jsx}"]
72
76
77
78
+ "deploy": {
79
+ "executor": "nx:run-commands",
80
+ "options": {
81
+ "command": "vite build -c adapters/vercel-edge/vite.config.ts"
82
83
+ "dependsOn": ["build-vercel"]
84
85
+ "build-vercel": {
86
87
88
89
+ }
73
90
91
92
"tags": []
0 commit comments