mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2025-02-01 13:49:40 +00:00
Tixie
0798ae1610
* 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
32 lines
856 B
JavaScript
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')
|