vue+webpack+nginx 部署在服务器非根目录下访问404问题
目录为 mp
//vue.config.js 改为
publicPath: '/mp/',
const createRouter = () =>
new Router({
base: '/mp/', //改为
mode: 'history', // require service support
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes
})