souvenir/src/main.js
Tixie 0798ae1610
Small dependencies updates + project state announcement (#9)
* Small dependencies update

* Add information on the project state

* Update repo URL in console.log

* Fix typo and improve wording in project state message

* Specify an old node version to help with build
2024-06-06 21:50:28 +02:00

32 lines
856 B
JavaScript

import Vue from 'vue'
import App from '/App.vue'
import router from '/router'
import store from '/store'
import registerServiceWorker from '/register-service-worker.js'
import LayoutDefault from '/views/layout/default'
import LayoutOverlay from '/views/layout/overlay'
Vue.component('layout-default', LayoutDefault)
Vue.component('layout-overlay', LayoutOverlay)
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
registerServiceWorker()
console.log(`%c
┌─┐┌─┐┬ ┬┬ ┬┌─┐┌┐┌┬┬─┐
└─┐│ ││ │└┐┌┘├┤ ││││├┬┘
└─┘└─┘└─┘ └┘ └─┘┘└┘┴┴└─
Oh hi! If you're looking for the source code, It's here: https://github.com/GuerillaHQ/souvenir
Have fun 💜
`, 'font-family:monospace')