-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.js
47 lines (46 loc) · 1.02 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
import { defineConfig } from "vite";
import { viteStaticCopy } from "vite-plugin-static-copy";
export default defineConfig({
root: ".",
base: "./",
server: {
open: "index.html",
headers: {
"Cross-Origin-Opener-Policy": "same-origin",
"Cross-Origin-Embedder-Policy": "require-corp",
},
},
build: {
rollupOptions: {
output: {
format: "es",
},
},
},
worker: {
format: "esm",
},
// exclude @niivue/niimath from optimization
optimizeDeps: {
exclude: [
"@niivue/niimath",
"@itk-wasm/cuberille",
"@itk-wasm/mesh-filters",
],
},
plugins: [
// put lazy loaded JavaScript and Wasm bundles in dist directory
viteStaticCopy({
targets: [
{
src: "node_modules/@itk-wasm/cuberille/dist/pipelines/*.{js,wasm,wasm.zst}",
dest: "pipelines",
},
{
src: "node_modules/@itk-wasm/mesh-filters/dist/pipelines/*.{js,wasm,wasm.zst}",
dest: "pipelines",
},
],
}),
],
});