reorganize folders and rm unused

This commit is contained in:
axolotle
2021-02-22 16:40:37 +01:00
parent 271d3ddad2
commit 0da09e13d8
254 changed files with 0 additions and 31383 deletions
+26
View File
@@ -0,0 +1,26 @@
import Vue from 'vue'
import router from './router'
import store from './store'
// import { sync } from 'vuex-router-sync'
import Meta from 'vue-meta'
import Vue2TouchEvents from 'vue2-touch-events'
import App from './App'
import 'assets/css/mdi/css/materialdesignicons.css'
// import 'mdi/font'
import 'vue-select/src/scss/vue-select.scss'
import 'assets/css/app.scss'
Vue.use(Meta)
Vue.use(Vue2TouchEvents)
// Define the api path regarding the environment
// https://apple.stackexchange.com/questions/17077/add-a-hosts-file-entry-without-jailbreaking
// window.apipath = process.env === 'prod' || window.location.hostname === 'dev.gdp.fr' ? `http://${window.location.hostname}/api` : 'http://localhost:8984'
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')