2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-11-27 10:51:33 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
import Vue from 'vue';
|
2019-09-09 11:33:39 +01:00
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
import App from './App.vue';
|
|
|
|
import router from './router';
|
|
|
|
import store from './store';
|
|
|
|
|
2019-07-30 11:13:24 +01:00
|
|
|
Vue.config.devtools = true;
|
|
|
|
Vue.config.performance = true;
|
2018-11-05 15:26:18 +00:00
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
|
|
new Vue({
|
2019-02-20 13:33:56 +00:00
|
|
|
router,
|
|
|
|
store,
|
|
|
|
render: (h) => h(App),
|
2018-11-05 15:26:18 +00:00
|
|
|
}).$mount('#app');
|