UNPKG
kulp-ai-tagger
Version:
latest (1.0.0)
1.0.0
Vite plugin for tagging React components
kulp-ai-tagger
/
example
/
vite.config.ts
10 lines
(9 loc)
•
220 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ defineConfig }
from
'vite'
;
import
react
from
'@vitejs/plugin-react'
;
import
{ componentTagger }
from
'../dist/index.js'
;
export
default
defineConfig
({
plugins
: [
react
(),
componentTagger
(), ], });