fix(cli): incorrect mobile relative path

This commit is contained in:
陈嘉涵 2019-12-13 10:35:22 +08:00
parent 547752e527
commit c9898d6bec

View File

@ -17,25 +17,17 @@ import VanDoc from './components';
import { config, packageVersion } from 'site-desktop-shared';
import { setLang } from '../common/locales';
function getPublicPath() {
const { site } = config.build || {};
if (process.env.NODE_ENV === 'production') {
return (site && site.publicPath) || '/';
}
return '/';
}
export default {
components: {
VanDoc
},
data() {
const path = location.pathname.replace('/index', '/');
return {
packageVersion,
simulator: `${getPublicPath()}mobile.html${location.hash}`
simulator: `${path}mobile.html${location.hash}`
};
},