We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68686a commit 05eb6beCopy full SHA for 05eb6be
client/pages/routes.js
@@ -14,19 +14,25 @@ export default {
14
{
15
path: '/',
16
getComponent(location, cb) {
17
- System.import('pages/Home').then(loadRoute(cb)).catch(errorLoading);
+ System.import('pages/Home')
18
+ .then(loadRoute(cb))
19
+ .catch(errorLoading);
20
}
21
},
22
23
path: 'blog',
24
- System.import('pages/Blog').then(loadRoute(cb)).catch(errorLoading);
25
+ System.import('pages/Blog')
26
27
28
29
30
31
path: 'about',
32
- System.import('pages/About').then(loadRoute(cb)).catch(errorLoading);
33
+ System.import('pages/About')
34
35
36
37
38
]
0 commit comments