From d43b55966ebabc395debd138337454cb19fd0924 Mon Sep 17 00:00:00 2001 From: D See Ker Date: Sun, 8 Nov 2020 22:41:30 +0000 Subject: [PATCH] #3289 add base path to match publicPath fixes breaking to 404 page in history mode when publicPath sub path is set --- src/router/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router/index.js b/src/router/index.js index 2be959d2..54f7d692 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -389,6 +389,7 @@ export const asyncRoutes = [ const createRouter = () => new Router({ // mode: 'history', // require service support + // base: process.env.VUE_APP_SRC, // public scrollBehavior: () => ({ y: 0 }), routes: constantRoutes })