elk/plugins/masto.ts
2022-11-18 05:32:03 +08:00

13 lines
254 B
TypeScript

import { login } from 'masto'
export default defineNuxtPlugin((nuxt) => {
const { server, token } = useAppCookies()
const masto = login({
url: `https://${server.value}`,
accessToken: token.value || undefined,
})
nuxt.$masto = masto
})