2022-11-14 02:20:07 +00:00
|
|
|
import { login } from 'masto'
|
|
|
|
|
|
|
|
export default defineNuxtPlugin((nuxt) => {
|
2022-11-15 15:48:23 +00:00
|
|
|
const { server, token } = useAppCookies()
|
2022-11-15 11:54:07 +00:00
|
|
|
|
2022-11-14 02:20:07 +00:00
|
|
|
const masto = login({
|
2022-11-15 15:48:23 +00:00
|
|
|
url: `https://${server.value}`,
|
2022-11-17 21:32:03 +00:00
|
|
|
accessToken: token.value || undefined,
|
2022-11-14 02:20:07 +00:00
|
|
|
})
|
2022-11-17 21:32:03 +00:00
|
|
|
|
|
|
|
nuxt.$masto = masto
|
2022-11-14 02:20:07 +00:00
|
|
|
})
|