Upgrade webpack, remove service worker, other small optimizations

This commit is contained in:
Arkadiusz Sygulski
2018-04-27 19:55:15 +02:00
parent 01970b4a2b
commit 9f0ae90dd6
53 changed files with 6174 additions and 6070 deletions

View File

@@ -0,0 +1,24 @@
import Vue from 'vue';
import Router from 'vue-router';
Vue.use(Router);
export default new Router({
routes: [
{
path: '/',
name: 'home',
component: () => import('./components/Home.vue')
},
{
path: '/asf',
name: 'asf-config',
component: () => import('./components/ASFConfig.vue')
},
{
path: '/bot',
name: 'bot-config',
component: () => import('./components/BotConfig.vue')
}
]
});