File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
spring-boot-admin-samples/spring-boot-admin-sample-custom-ui Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ To develop the ui on an running server the best to do is
10
10
11
11
1 . Running the ui build in watch mode so the resources get updated:
12
12
``` shell
13
- npm run watch
13
+ npm run build: watch
14
14
```
15
15
2 . Run a Spring Boot Admin Server instances with the template-location and resource-location pointing to the build output and disable caching:
16
16
```
@@ -28,5 +28,5 @@ npm run build
28
28
29
29
Repeated build with watching the files:
30
30
``` shell
31
- npm run watch
31
+ npm run build: watch
32
32
```
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"build" : " vite build" ,
8
8
"build:dev" : " NODE_ENV=development vite build --emptyOutDir --sourcemap --mode development" ,
9
+ "build:watch" : " NODE_ENV=development vite build --emptyOutDir --watch --sourcemap --mode development" ,
9
10
"preview" : " vite preview"
10
11
},
11
12
"dependencies" : {
You can’t perform that action at this time.
0 commit comments