Skip to content
Snippets Groups Projects
Verified Commit 0012182d authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Added front redirection and updated contribution instructions

parent cf13a788
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ Setup front-end only development environment ...@@ -43,7 +43,7 @@ Setup front-end only development environment
4. Launch the development server:: 4. Launch the development server::
# this will serve the front-end on http://localhost:8000 # this will serve the front-end on http://localhost:8000/front/
VUE_PORT=8000 yarn serve VUE_PORT=8000 yarn serve
5. Make the front-end talk with an existing server (like https://demo.funkwhale.audio), 5. Make the front-end talk with an existing server (like https://demo.funkwhale.audio),
......
...@@ -54,6 +54,11 @@ export default new Router({ ...@@ -54,6 +54,11 @@ export default new Router({
name: 'index', name: 'index',
component: Home component: Home
}, },
{
path: '/front',
name: 'front',
redirect: '/'
},
{ {
path: '/about', path: '/about',
name: 'about', name: 'about',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment