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
Consider a pattern intended to match dotfiles like new URLPattern({ pathname: '/.*' }). The pathname encoding algorithm will end up collapsing the /. to just . so you get a final pattern of /*.
To work around this issue you can isolate the dot in a custom regexp group like /(\\.)*.
Consider a pattern intended to match dotfiles like
new URLPattern({ pathname: '/.*' })
. The pathname encoding algorithm will end up collapsing the/.
to just.
so you get a final pattern of/*
.To work around this issue you can isolate the dot in a custom regexp group like
/(\\.)*
.This is forked off from #156.
The text was updated successfully, but these errors were encountered: