-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
44 lines (42 loc) · 913 Bytes
/
vite.config.js
File metadata and controls
44 lines (42 loc) · 913 Bytes
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
import { threeMinifier } from "@yushijinhun/three-minifier-rollup";
import { watch } from "fs";
import path from "path";
import { fileURLToPath } from "url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default {
root: path.resolve(__dirname, "src"),
plugins: [{ ...threeMinifier(), enforce: "pre" }],
resolve: {
alias: {
three: "three",
"@": path.resolve(__dirname, "src"),
},
},
optimizeDeps: {
include: ["three", "three-viewport-gizmo"],
},
server: {
watch: {
include: ["src/**/*.js"],
usePolling: true,
interval: 1500,
},
},
build: {
rollupOptions: {
output: {
manualChunks: {
three: ["three"],
},
},
treeshake: {
moduleSideEffects: false,
},
},
},
test: {
environment: "node",
globals: true,
include: ["../**/*.test.js"],
},
};