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
Update connect-history-api-fallback to enable disableDotRule use (#638)
Currently, `webpack-dev-server` is requiring `connect-history-api-fallback@^1.2.0` which might resolve to `1.2.0` on current installs.
This version doesn't yet allow for the `disableDotRule` option enabled in bripkens/connect-history-api-fallback@ee86111.
Using the following in the Webpack Dev Server config works when `[email protected]` is installed:
```
historyApiFallback: {
disableDotRule: true,
},
```
0 commit comments