UNPKG

nuxt-schema-org

Version:

The quickest and easiest way to build Schema.org graphs for Nuxt.

12 lines (11 loc) 289 B
import { defineNuxtPlugin } from "nuxt/app"; import { initPlugin } from "../../utils/shared.js"; export default defineNuxtPlugin({ name: "nuxt-schema-org:init", order: 999, // @ts-expect-error untyped dependsOn: ["i18n:plugin"], setup(nuxtApp) { initPlugin(nuxtApp); } });