import { createHead } from '@vueuse/head' import ViteplayPreviewWrapper from './src/ViteplayPreviewWrapper.vue' const head = createHead() export default { // Optional Wrapper component for the example Wrapper: ViteplayPreviewWrapper, // Optional function to extend the Vue app instance extend({ app }) { app.use(head) // app is the Vue app instance // you can add Vue plugins normally like this: // app.use(SomePlugin) }, }