We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9529660 commit b1a0aacCopy full SHA for b1a0aac
{{cookiecutter.project_slug}}/frontend/public/manifest.json
@@ -13,7 +13,7 @@
13
"type": "image/png"
14
}
15
],
16
- "start_url": "/index.html",
+ "start_url": "/",
17
"display": "standalone",
18
"background_color": "#000000",
19
"theme_color": "#4DBA87"
{{cookiecutter.project_slug}}/frontend/src/router.ts
@@ -28,5 +28,8 @@ export default new Router({
28
name: 'main',
29
component: () => import(/* webpackChunkName: "main" */ './views/Main.vue'),
30
},
31
+ {
32
+ path: '/*', redirect: '/',
33
+ },
34
35
});
0 commit comments