mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
Upgrade webpack, remove service worker, other small optimizations
This commit is contained in:
17
WebConfigGenerator/src/app.js
Normal file
17
WebConfigGenerator/src/app.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import Vue from 'vue';
|
||||
import VueI18n from 'vue-i18n';
|
||||
|
||||
import App from './App.vue';
|
||||
import i18nSettings from './i18n.js';
|
||||
import router from './router.js';
|
||||
|
||||
Vue.use(VueI18n);
|
||||
const i18n = new VueI18n(i18nSettings);
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
router,
|
||||
i18n,
|
||||
template: '<App/>',
|
||||
components: { App }
|
||||
});
|
||||
Reference in New Issue
Block a user