-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
50 lines (49 loc) · 1.16 KB
/
vite.config.ts
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
38
39
40
41
42
43
44
45
46
47
48
49
50
import vue from '@vitejs/plugin-vue';
import { defineConfig } from 'vite';
import { resolve } from 'path';
import visualizer from 'rollup-plugin-visualizer';
export default defineConfig(async (config) => ({
base: '/robust-ui/',
plugins: [
vue(),
config.mode === 'analyze'
? visualizer({ open: true, title: 'Robust-UI Bundle Visualizer' })
: undefined,
],
esbuild: {
pure: ['console.log'],
},
build: {
sourcemap: true,
lib: {
entry: resolve(__dirname, 'src/index.ts'),
name: 'robust-ui',
},
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: [
'vue',
'date-fns',
'@floating-ui/vue',
'@vueuse/core',
'@vueuse/shared',
'vee-validate',
'fuse.js',
'@phosphor-icons/vue',
'vuedraggable',
'lodash'
],
output: [
{
preserveModules: true,
format: 'esm',
entryFileNames: (asset: ChunkInfo) => {
return asset.name.replace('.vue', '') + '.mjs';
},
dir: 'dist',
},
],
},
},
}));