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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -114,9 +114,9 @@ http-proxy-middleware offers several ways to decide which requests should be pro
114
114
115
115
For fine-grained control you can use wildcard matching. Glob pattern matching is done by _micromatch_. Visit [micromatch](https://www.npmjs.com/package/micromatch) or [glob](https://www.npmjs.com/package/glob) for more globbing examples.
116
116
* `**` matches any path, all requests will be proxied.
117
-
* `**.html` matches any path which ends with `.html`
117
+
* `**/*.html` matches any path which ends with `.html`
118
118
* `/*.html` matches paths directly under path-absolute
119
-
* `/api/**.html` matches requests ending with `.html` in the path of `/api`
119
+
* `/api/**/*.html` matches requests ending with `.html` in the path of `/api`
0 commit comments