You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2wr-app/README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,28 @@ npm install
28
28
npm run serve
29
29
```
30
30
31
+
## Alternatively, you can run the functions and the Vue build for development
32
+
33
+
```console
34
+
npm run dev
35
+
```
36
+
37
+
We've started the process of moving to a two tier build names where dev processes are prefixed with dev: so that you can run all the process by building this way. You will notice that you can run these separated if needed:
38
+
39
+
### Just Serve the Vue PWA
40
+
41
+
```console
42
+
npm run dev:serve
43
+
```
44
+
45
+
### Just Start the Azure Function Project
46
+
47
+
```console
48
+
npm run dev:napi
49
+
```
50
+
51
+
**NOTE**: We will be moving all the processes to this once we complete changes to the CI Build.
0 commit comments