-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
41 lines (39 loc) · 943 Bytes
/
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
import { defineConfig } from "vite";
import path from "path";
// Common chunks configuration
const manualChunks = {
manualChunks(id) {
switch (true) {
case id.includes("shared-orbitcontrols"):
return "shared-orbitcontrols";
case id.includes("node_modules/three"):
return "vendor-three";
case id.includes("gainmap-js"):
return "gainmap-js";
case id.includes("postprocessing"):
return "postprocessing"
}
},
};
export default defineConfig({
base: "/monk-viewer/",
build: {
rollupOptions: {
input: {
main: path.resolve(__dirname, "index.html"),
"offscreencanvas-worker-orbitcontrol": path.resolve(
__dirname,
"src/offscreencanvas-worker-orbitcontrol.js",
),
},
output: manualChunks,
},
},
worker: {
format: "es",
plugins: [],
rollupOptions: {
output: manualChunks,
},
},
});