1、配置输出路径
// vue.config.js
module.exports = {
publicPath: './'
}
2、不能使用history路由
// ...
export default new Router({
// mode: 'history',
routes: [
{
path: '/',
name: 'home',
component: Home
}
]
})
1、配置输出路径
// vue.config.js
module.exports = {
publicPath: './'
}
2、不能使用history路由
// ...
export default new Router({
// mode: 'history',
routes: [
{
path: '/',
name: 'home',
component: Home
}
]
})