TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
18 lines
305 B
JavaScript
18 lines
305 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import App from '@/App.vue'
|
|
import router from '@/router'
|
|
|
|
import '@/style.css';
|
|
|
|
// Vuetify
|
|
import vuetify from '@/plugins/vuetify'
|
|
|
|
const app = createApp(App)
|
|
app.use(vuetify)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|