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
{{ message }}
This repository was archived by the owner on Nov 6, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,12 @@ See the examples here: [https://github.com/EEParker/aspnetcore-vueclimiddleware/
10
10
First, be sure to switch Vue Cli or Quasar Cli to output distribution files to wwwroot directly (not dist).
11
11
12
12
* Quasar CLI: regex: "Compiled successfully"
13
-
* Vue CLI: regex: default or "running at"
13
+
* Vue CLI: regex: default or "running at" or "Starting development server"
14
+
>the reason for **`Starting development server`** ,the npm-script running checkpoint:
15
+
Although the dev server may eventually tell us the URL it's listening on,
16
+
it doesn't do so until it's finished compiling, and even then only if there were
17
+
no compiler warnings. So instead of waiting for that, consider it ready as soon
18
+
as it starts listening for requests.[see the codes](https://github.com/EEParker/aspnetcore-vueclimiddleware/blob/master/src/VueCliMiddleware/VueDevelopmentServerMiddleware.cs#L91)
14
19
15
20
See [Migrating Asp.Net 2.2 to 3.0 Endpoint Routing](https://docs.microsoft.com/en-us/aspnet/core/migration/22-to-30?view=aspnetcore-2.2&tabs=visual-studio#update-routing-startup-code)
0 commit comments