Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { createRouter } from './router.js'
import NuxtChild from './components/nuxt-child.js'
import NuxtError from '../layouts/error.vue'
import Nuxt from './components/nuxt.js'
import App from './App.js'
import { setContext, getLocation, getRouteData, normalizeError } from './utils'
import { createStore } from './store.js'
/* Plugins */
import nuxt_plugin_plugin_1be8b02e from 'nuxt_plugin_plugin_1be8b02e' // Source: ./vuetify/plugin.js (mode: 'all')
import nuxt_plugin_notifier_3e43155b from 'nuxt_plugin_notifier_3e43155b' // Source: ../plugins/notifier.js (mode: 'all')
import nuxt_plugin_vuetify_d6afc2c2 from 'nuxt_plugin_vuetify_d6afc2c2' // Source: ../plugins/vuetify.js (mode: 'all')
// Component:
Vue.component(ClientOnly.name, ClientOnly)
// TODO: Remove in Nuxt 3:
Vue.component(NoSsr.name, {
...NoSsr,
render (h, ctx) {
if (process.client && !NoSsr._warned) {
NoSsr._warned = true
console.warn(' has been deprecated and will be removed in Nuxt 3, please use instead')
}
return NoSsr.render(h, ctx)
}
})
// Component:
Vue.component(NuxtChild.name, NuxtChild)