- Notifications
You must be signed in to change notification settings - Fork670
Closed as not planned
Description
Environment
Thank you for this awesome module. I am not sure that this issue should be reported here but in case there is an issue with this module andnuxt-schema-org
. When the UI package (v3.0.0-beta.3) is installed and after I try to installnuxt-schema-org
it throws an error ERROR Could not load nuxt-schema-org. Is it installed?
The issue is not reproducible with UI version 2.*
-- Operation System: macOS 15
-- nuxt versions: 3.16.0
-- node version: 20
-- package manager: yarn
Is this bug related to Nuxt or Vue?
Nuxt
Version
v3.0.0-beta.3
Reproduction
nuxt config can be helpful
export default defineNuxtConfig({ future: { compatibilityVersion: 4, }, compatibilityDate: "2024-11-01", devtools: { enabled: true }, app: { head: { title: 'Nuxt', // default fallback title link: [ { rel: 'icon', type: 'image/x-icon', sizes: "16x16", href: '/assets/favicon-16x16.png' }, { rel: 'icon', type: 'image/x-icon', sizes: "32x32", href: '/assets/favicon-32x32.png' }, { rel: 'icon', type: 'image/x-icon', sizes: "48x48", href: '/assets/favicon-48x48.png' }, { rel: 'icon', type: 'image/x-icon', sizes: "192x192", href: '/assets/android-chrome-192x192.png' }, { rel: 'icon', type: 'image/x-icon', sizes: "512x512", href: '/assets/android-chrome-512x512.png' }, { rel: 'apple-touch-icon', type: 'image/x-icon', sizes: "180x180", href: '/assets/apple-touch-icon.png' }, ] } }, modules: [ 'nuxt-schema-org', "@nuxt/image", "@nuxtjs/i18n", '@nuxt/ui', "@nuxt/eslint", "@nuxt/test-utils/module", "@pinia/nuxt", "nuxt-time" ], i18n: { baseUrl: 'https://...', locales: [ { code: "en", language: "en-US", name: "EN" }, { code: "ru", language: "ru-RU", name: "RU" }, { code: "kz", language: "kk-KZ", name: "KZ", hreflang: 'kk' }, ], defaultLocale: "ru", vueI18n: "~~/i18n.config.ts", // if you are using custom path, default }, image: { domains: ["....com"], }, routeRules: { "/": { redirect: '/blog' }, "/blog": { swr: true }, "/blog/category/**": { swr: true }, "/blog/article/**": { ssr: true }, }, runtimeConfig: { public: { apiBase: process.env.NUXT_PUBLIC_API_BASE || "https://...", }, }, sourcemap: { server: true, client: true, }});
Description
conflict with nuxt-schema-org
Additional context
No response