1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 14:16:50 +01:00
elk/plugins/setup-emojis.ts
2022-12-28 04:50:29 +01:00

10 lines
216 B
TypeScript

export default defineNuxtPlugin(() => {
if (process.server)
return
const promise = import('@emoji-mart/data').then(r => r.default)
import('emoji-mart').then(r => r.init({
data: () => promise,
}))
})