We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce99a04 commit 784173eCopy full SHA for 784173e
src/index.js
@@ -51,8 +51,6 @@ let cacheRoute = null
51
let cacheXhr = null
52
53
const getAlias = function (route) {
54
- route = route.replace(/\/+/, '/')
55
-
56
if (OPTIONS.alias[route]) {
57
return getAlias(OPTIONS.alias[route])
58
} else {
@@ -74,10 +72,11 @@ const mainRender = function (cb) {
74
72
}
75
73
76
// replace route
77
- if (OPTIONS.alias && OPTIONS.alias['/' + route]) {
78
- route = getAlias('/' + route)
+ route = '/' + route
+ if (OPTIONS.alias && OPTIONS.alias[route]) {
+ route = getAlias(route)
79
80
- route = OPTIONS.basePath + route
+ route = (OPTIONS.basePath + route).replace(/\/+/, '/')
81
82
83
if (!route) {
0 commit comments