Skip to content

Commit

Permalink
feat(components)!: make component non global
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Apr 21, 2023
1 parent a4d1b51 commit 3be4a7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ export default defineNuxtConfig({
{
prefix: '',
path: resolve('./components/base'),
global: true,
global: false,
},
{
prefix: '',
path: resolve('./components/icon'),
global: true,
global: false,
},
{
prefix: '',
path: resolve('./components/form'),
global: true,
global: false,
},
],
})

0 comments on commit 3be4a7e

Please sign in to comment.