mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Use correct chunknames
This commit is contained in:
parent
2fc8854060
commit
7ffc34be9a
|
@ -19,34 +19,22 @@ const routes: Array<RouteConfig> = [
|
||||||
{
|
{
|
||||||
path: '/trade',
|
path: '/trade',
|
||||||
name: 'Freqtrade Trading',
|
name: 'Freqtrade Trading',
|
||||||
// route level code-splitting
|
component: () => import(/* webpackChunkName: "trade" */ '@/views/Trading.vue'),
|
||||||
// this generates a separate chunk (about.[hash].js) for this route
|
|
||||||
// which is lazy-loaded when the route is visited.
|
|
||||||
component: () => import(/* webpackChunkName: "about" */ '@/views/Trading.vue'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/graph',
|
path: '/graph',
|
||||||
name: 'Freqtrade Graph',
|
name: 'Freqtrade Graph',
|
||||||
// route level code-splitting
|
component: () => import(/* webpackChunkName: "graph" */ '@/views/Graphs.vue'),
|
||||||
// this generates a separate chunk (about.[hash].js) for this route
|
|
||||||
// which is lazy-loaded when the route is visited.
|
|
||||||
component: () => import(/* webpackChunkName: "about" */ '@/views/Graphs.vue'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/dashboard',
|
path: '/dashboard',
|
||||||
name: 'Freqtrade Dashboard',
|
name: 'Freqtrade Dashboard',
|
||||||
// route level code-splitting
|
component: () => import(/* webpackChunkName: "dashboard" */ '@/views/Dashboard.vue'),
|
||||||
// this generates a separate chunk (about.[hash].js) for this route
|
|
||||||
// which is lazy-loaded when the route is visited.
|
|
||||||
component: () => import(/* webpackChunkName: "about" */ '@/views/Dashboard.vue'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/login',
|
path: '/login',
|
||||||
name: 'Login',
|
name: 'Login',
|
||||||
// route level code-splitting
|
component: () => import(/* webpackChunkName: "login" */ '@/views/LoginView.vue'),
|
||||||
// this generates a separate chunk (about.[hash].js) for this route
|
|
||||||
// which is lazy-loaded when the route is visited.
|
|
||||||
component: () => import(/* webpackChunkName: "about" */ '@/views/LoginView.vue'),
|
|
||||||
meta: {
|
meta: {
|
||||||
allowAnonymous: true,
|
allowAnonymous: true,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user