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
feat: Support Windows-style path in RewriteFrame iteratee
The previous default iteratee does not work in Windows because it only detects
paths that begin with `/`. This change ensures paths that begin with `C:\\` are
also accounted for.
This implementation requires that the specified `root` uses Unix-style paths.
So this will not work:
new RewriteFrames({
root: 'C:\\Program Files\\Apache\\www'
})
But this will:
new RewriteFrames({
root: '/Program Files/Apache/www'
})
Should this behaviour change or be noted in the official docs?
0 commit comments