UNPKG
hrnet-simple-modal
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
a simple modal component for HRnet project
github.com/jdevis/packages
jdevis/packages
hrnet-simple-modal
/
vite.config.js
15 lines
(14 loc)
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { resolve }
from
'path'
import { defineConfig }
from
'vite'
; export
default
defineConfig
({
build
: {
lib
: {
entry
:
resolve
(__dirname,
'src/index.jsx'
),
name
:
'hrnet-simple-modal'
,
fileName
:
'index'
},
rollupOptions
: {
external
: [
'react'
], } } })