-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.bundle.config.js
37 lines (36 loc) · 985 Bytes
/
vite.bundle.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { resolve } from 'path'
import { defineConfig } from 'vite'
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js'
export default defineConfig({
plugins: [cssInjectedByJsPlugin()],
build: {
emptyOutDir: false,
lib: {
entry: resolve(__dirname, 'src/build.ts'),
name: 'Sharee',
// the proper extensions will be added
fileName: 'sharee',
formats: ['umd']
},
rollupOptions: {
input: {
'sharee': resolve(__dirname, 'src/build.ts'),
},
// make sure to externalize deps that shouldn't be bundled
// into your library
external: [],
output: {
manualChunks: false,
inlineDynamicImports: true,
entryFileNames: ({ name: fileName }) => {
return `${fileName}.min.js`
},
// Provide global variables to use in the UMD build
// for externalized deps
// globals: {
// vue: 'Vue'
// }
}
}
}
})