mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import { login } from 'masto'
|
|
|
|
export default defineNuxtPlugin((nuxt) => {
|
|
const masto = login({
|
|
url: 'https://mas.to',
|
|
})
|
|
nuxt.vueApp.provide('masto', masto)
|
|
})
|