-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathvite.config.mjs
64 lines (61 loc) · 1.35 KB
/
vite.config.mjs
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
60
61
62
63
64
// vite.config.js
import path from 'path';
import { defineConfig } from 'vite';
import cleanup from 'rollup-plugin-cleanup';
const name = "TradeX-chart";
const id = "tradex-chart";
export default defineConfig(({ command, mode }) => {
if (command === 'build') {
return {
// build specific config
build: {
lib: {
entry: path.resolve(__dirname, 'src/index.js'),
name: name,
fileName: (format) => `${id}.${format}.js`
},
emptyOutDir: true,
target: "esnext",
minify: "esbuild",
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled into your library
external: [
'talib-web',
],
output: {
globals: {
// vue: 'Vue'
}
},
plugins: [
cleanup()
]
}
},
};
} else if (command === 'serve') {
// demo specific config
return {
// server: {
// open: '/demo.html'
// }
server: {
host: true,
// cors: false,
}
};
} else {
return {
// dev / serve specific config
server: {
// host: true,
// cors: false,
proxy: {
'/api': {
target: 'https://api.binance.com'
}
}
}
};
}
});