forked from didirus/AstralRinth
* Initial impl of project pages
* Finalize project styling
* Revert browse page changes
* Fix lint
* Addressed some comments
* 😄
* Run lint
* Addressed issues
* fixed dist
* addressed changes
* Address changes
* I am speed
* Howd you get there
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
import { createApp } from 'vue'
|
|
import router from '@/routes'
|
|
import App from '@/App.vue'
|
|
import { createPinia } from 'pinia'
|
|
import '../node_modules/omorphia/dist/style.css'
|
|
import '@/assets/stylesheets/global.scss'
|
|
|
|
const pinia = createPinia()
|
|
|
|
createApp(App).use(router).use(pinia).mount('#app')
|