1、vue.config.js中
module.exports = {
// 基本路径
publicPath: cdn地址,
// 输出文件目录
outputDir: "dist",
}
2、router/index.js中
const router = new VueRouter({
// base: process.env.BASE_URL,//去除base防止window.open()打开的页面中被拼接base导致404
routes: constantRoutes,
});
网友评论