-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvite.config.js
63 lines (59 loc) · 1.36 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
60
61
62
63
import { resolve } from "path";
import { defineConfig } from 'vite'
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
const baseConfig = {
base: "./",
plugins: [
wasm(),
topLevelAwait()
],
build: {
target: "esnext",
emptyOutDir: false,
}
};
// Use mode to determine which config to use
export default defineConfig(({ mode }) => {
if (mode === 'module') {
return {
...baseConfig,
build: {
...baseConfig.build,
lib: {
entry: resolve(__dirname, "./js/module.js"),
formats: ['es'],
fileName: () => 'module.js',
},
rollupOptions: {
output: {
entryFileNames: `[name].js`,
chunkFileNames: `[name].js`,
assetFileNames: `[name].[ext]`
}
}
}
}
}
if (mode === 'worker') {
return {
...baseConfig,
build: {
...baseConfig.build,
lib: {
entry: resolve(__dirname, "./js/worker.js"),
formats: ['cjs'],
fileName: () => 'worker.js',
},
rollupOptions: {
output: {
entryFileNames: `[name].js`,
chunkFileNames: `[name].js`,
assetFileNames: `[name].[ext]`
}
}
}
}
}
throw new Error('Please specify mode: module or worker');
});