Skip to content

Commit 784173e

Browse files
committed
fix(src): get alias
1 parent ce99a04 commit 784173e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/index.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ let cacheRoute = null
5151
let cacheXhr = null
5252

5353
const getAlias = function (route) {
54-
route = route.replace(/\/+/, '/')
55-
5654
if (OPTIONS.alias[route]) {
5755
return getAlias(OPTIONS.alias[route])
5856
} else {
@@ -74,10 +72,11 @@ const mainRender = function (cb) {
7472
}
7573

7674
// replace route
77-
if (OPTIONS.alias && OPTIONS.alias['/' + route]) {
78-
route = getAlias('/' + route)
75+
route = '/' + route
76+
if (OPTIONS.alias && OPTIONS.alias[route]) {
77+
route = getAlias(route)
7978
} else {
80-
route = OPTIONS.basePath + route
79+
route = (OPTIONS.basePath + route).replace(/\/+/, '/')
8180
}
8281

8382
if (!route) {

0 commit comments

Comments
 (0)