Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import './devTools'
require('./design/bulma.scss')
Vue.config.productionTip = false
izitoast.settings({
position: 'topCenter',
transitionIn: 'fadeInDown',
transitionOut: 'fadeOutUp',
transitionInMobile: 'fadeInDown',
transitionOutMobile: 'fadeOutUp',
progressBar: false
})
nprogress.configure({ showSpinner: false })
Vue.use(VueMq, {
breakpoints: {
tablet: 769,
desktop: 1024,
widescreen: 1216,
fullhd: Infinity
}
})
Vue.use(VueSocketio, io(process.env.VUE_APP_API_URL), store)
if (process.env.VUE_APP_SENTRY_DSN) {
Sentry.init({
dsn: process.env.VUE_APP_SENTRY_DSN,
integrations: [new Sentry.Integrations.Vue({ Vue })]
})
router.afterEach(() => {
nprogress.done()
})
router.beforeEach((to, from, next) => {
nprogress.start()
next()
})
router.afterEach(() => {