import { defineNuxtPlugin } from 'nuxt/app' import { defineDesktopApp } from '@owdproject/core/runtime/utils/utilDesktop' import configAppAtproto from './app.config' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.hook('app:created', async () => { await defineDesktopApp(configAppAtproto) }) })