From 34fe40378eaf1cf4e900da2579d5067dada5ba03 Mon Sep 17 00:00:00 2001 From: Matteo Cominetti Date: Mon, 5 Oct 2020 20:15:19 +0100 Subject: [PATCH] fix(frontend): fixes issue of routes and history mode --- frontend/vue.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/vue.config.js b/frontend/vue.config.js index c0ddb1212..0eef0bd79 100644 --- a/frontend/vue.config.js +++ b/frontend/vue.config.js @@ -17,7 +17,8 @@ module.exports = { historyApiFallback: { rewrites: [ { from: /^\/$/, to: "/app.html" }, - { from: /\/auth/, to: "/auth.html" } + { from: /\/auth/, to: "/auth.html" }, + { from: /./, to: "/app.html" } ] } },