summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-01-11 10:50:58 +0100
committerJulius Härtl <jus@bitgrid.net>2019-01-11 10:50:58 +0100
commit229891d3e70568b3643a8ced541a2c591c9467ec (patch)
tree06af60d0c8e62537d8b352c3aadf514c0db2f5e2 /src
parent3b44c45304e35b95cdad878ba62579326cf423a7 (diff)
Add profile components to one chunk
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src')
-rw-r--r--src/router.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/router.js b/src/router.js
index 35b360a2..c15d236b 100644
--- a/src/router.js
+++ b/src/router.js
@@ -26,9 +26,9 @@ import Router from 'vue-router'
// Dynamic loading
const Timeline = () => import('./views/Timeline')
-const Profile = () => import('./views/Profile')
-const ProfileTimeline = () => import('./views/ProfileTimeline')
-const ProfileFollowers = () => import('./views/ProfileFollowers')
+const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile')
+const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline')
+const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers')
Vue.use(Router)