We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 787656a commit cd99b52Copy full SHA for cd99b52
src/core/route/index.js
@@ -20,7 +20,7 @@ export function routeMixin (proto) {
20
const { config } = this
21
const base = getBasePath(config.basePath)
22
23
- path = getAlias(path, config.alias)
+ path = config.alias ? getAlias(path, config.alias) : path
24
path = getFileName(path)
25
path = path === '/README.md' ? (config.homepage || path) : path
26
path = isAbsolutePath(path) ? path : getPath(base, path)
0 commit comments