fix(cli): incorrect iframe path

This commit is contained in:
陈嘉涵 2019-11-29 17:26:36 +08:00
parent 4b3a17b029
commit e760c692e8

View File

@ -16,7 +16,8 @@ export default {
},
data() {
const publicPath = (config.site && config.site.publicPath) || '/';
const { site } = config.build || {};
const publicPath = (site && site.publicPath) || '/';
return {
config: config.site,
simulator: `${publicPath}mobile.html${location.hash}`