UNPKG

json-editor-vue-v2

Version:

Vue and Nuxt 2/3 isomorphic JSON editor, viewer, formatter and validator.

13 lines (11 loc) 280 B
import { fileURLToPath } from 'node:url' import { defineNuxtModule } from '@nuxt/kit' export default defineNuxtModule({ hooks: { 'components:dirs': function (dirs) { dirs.push({ path: fileURLToPath(new URL('./dist', import.meta.url)), }) }, }, })