-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.js
59 lines (58 loc) · 1.53 KB
/
vite.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {resolve} from "path"
import {defineConfig} from "vite";
import vue from "@vitejs/plugin-vue";
import {viteStaticCopy} from "vite-plugin-static-copy";
import * as sass from "sass";
export default defineConfig({
build: {
lib: {
entry: resolve(__dirname, "src/index.js"),
name: "KestraUI",
fileName: "kestra-ui",
},
rollupOptions: {
external: [
"shiki",
"vue",
"humanize-duration",
"moment",
"lodash",
"bootstrap",
"@vue-flow/core",
"@vue-flow/controls",
"yaml",
"vue-material-design-icons",
"vite-plugin-static-copy",
"vite",
"sass",
"@popperjs/core",
"yaml",
"js-yaml"
],
output: {
// Provide global variables to use in the UMD build
// Add external deps here
globals: {
vue: "Vue",
},
},
plugins: []
},
},
plugins: [
vue(),
viteStaticCopy({
targets: [
{src: "src/scss/_variables.scss", dest: ""},
{src: "src/scss/_theme-dark.scss", dest: ""},
],
}),
],
css: {
preprocessorOptions: {
scss: {
logger: sass.Logger.silent
},
}
}
})