1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

build: electron-webpack replacement (#130)

* some changes

* improvements and dedicated webpeck configs for render and main

* added debugging setup

* vscode main process debug config

* vue3 devtools
This commit is contained in:
2021-10-31 10:36:45 +01:00
committed by GitHub
parent 89fdd210ca
commit 0cd182546b
26 changed files with 893 additions and 478 deletions

19
src/renderer/index.js Normal file
View File

@ -0,0 +1,19 @@
'use strict';
import Vue from 'vue';
import '@mdi/font/css/materialdesignicons.css';
import '@/scss/main.scss';
import App from '@/App.vue';
import store from '@/store';
import i18n from '@/i18n';
i18n.locale = store.state.settings.locale;
Vue.config.productionTip = false;
new Vue({
render: h => h(App),
store,
i18n
}).$mount('#app');