檢查Vue項目
- 檢查Config目錄中index.js文件build的配置,參照一下配置
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: '',
assetsPublicPath: '',
- 更改Router路由的模式
const router = new VueRouter({
mode: 'hash',
routes: [...]
})