##1打包的路径
config文件夹-index.js中的assetsPublicPath: './'要改为当前目录而不是'/'根目录 build: { env: require('./prod.env'), index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: './', productionSourceMap: true, }
##2.模式要去掉,不能使用html5的Historty模式
const router = new VueRouter({ // mode: 'history',//打包项目要把mode: history注释掉 routes // (缩写)相当于 routes: routes })