fix(frontend): fixes issue of routes and history mode

This commit is contained in:
Matteo Cominetti
2020-10-05 20:15:19 +01:00
parent 3619353b38
commit 34fe40378e
+2 -1
View File
@@ -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" }
]
}
},