vue.config.js
module.exports = {
baseUrl: process.env.NODE_ENV === 'production' ? '' : '/',
outputDir: 'dist',
assetsDir: 'assets',
productionSourceMap: false,
filenameHashing: false,
lintOnSave: true,
pages,
devServer: {
historyApiFallback: true,
overlay: {
warnings: true,
errors: true
},
open: true,
hotOnly: false
}
}
文件夹目录
此时在pages中experience单页中需要跳转页面,使用router路由,router.js配置如下
启动服务后,浏览器输入地址http://localhost:8080/experience.html页面显示空白,如果不使用history模式,页面可正常访问;
应该是路径的问题,求大神帮忙看下,哪里的路径有问题?
这个你没有配置路由