NuxtN
Nuxt13mo ago
Dmitry

500 - Cannot read properties of null (reading 'ce')

I'm coding a Billing Interface for my project, and I'm no idea how im getting this error, and how to fix it.
500
Cannot read properties of null (reading 'ce')

at renderSlot (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=30de441f:2983:32)
at Proxy. (https://178-236-243-96.ibgp.us/_nuxt/node_modules/.cache/vite/client/deps/radix-vue.js?v=30de441f:21411:19)
at renderComponentRoot (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:6521:16)
at hydrateSubTree (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:5309:32)
at ReactiveEffect.componentUpdateFn [as fn] (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:5334:13)
at ReactiveEffect.run (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js?v=d8d1fc38:198:19)
at setupRenderEffect (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:5478:5)
at mountComponent (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:5253:7)
at hydrateNode (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:1799:11)
at hydrateSubTree (https://178-236-243-96.ibgp.us/_nuxt/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?v=d8d1fc38:5316:13)

my nuxt config:
export default defineNuxtConfig({
  css: [
    '@/assets/css/tailwind.css',
    '@/assets/css/nuxt-fonts-global.css'
  ],
  modules: [
    '@nuxtjs/tailwindcss',
    'shadcn-nuxt',
    '@nuxtjs/color-mode',
    '@nuxt/fonts',
  ],
  fonts: {
    families: [
      { name: 'Onest', provider: 'google' },
      { name: 'Geist', provider: 'google' },
      { name: 'Unbounded', provider: 'google' },
      { name: 'Caprina Regular', provider: 'local' },
      { name: 'Inter', provider: 'google' }
    ]
  },
  shadcn: {
    prefix: '',
    componentDir: './components/ui'
  },
  build: {
    transpile: ['@nuxt/fonts'],
  },
})
Was this page helpful?