Skip to content

Commit

Permalink
Delete main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
elrumo committed Nov 5, 2023
1 parent 6c966bb commit d888bb8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { createApp, configureCompat } from 'vue'
import App from './App.vue'
import store from './store/store'
import router from './router'
import VueMobileDetection from 'vue-mobile-detection'
import VueLazyLoad from 'vue3-lazyload'
import vueCookies from 'vue-cookies'

// import "@adobe/coral-spectrum/dist/js/coral.js"
// import "@adobe/coral-spectrum/dist/css/coral.css"
// import './registerServiceWorker'

const app = createApp(App)

configureCompat({ WATCH_ARRAY: false })

app.use(vueCookies)
app.$cookies.config('30d')
app.use(VueMobileDetection)
app.use(store)
app.use(router)
app.use(VueLazyLoad, {
// options...
})
app.mount('#app')

1 comment on commit d888bb8

@vercel
Copy link

@vercel vercel bot commented on d888bb8 Nov 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.