-
Notifications
You must be signed in to change notification settings - Fork 31
/
vite.config.ts
65 lines (64 loc) · 1.71 KB
/
vite.config.ts
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
65
import config from "config";
import path from "node:path";
import virtual from "vite-plugin-virtual";
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
export default defineConfig({
test: {
environment: "happy-dom",
include: ["tests/unit/**/*.test.ts"],
reporters: "verbose",
},
plugins: [
virtual({
"virtual:config": config.util.toObject(),
}),
svelte({
// Reference: https://github.com/sveltejs/vite-plugin-svelte/issues/270#issuecomment-1033190138
dynamicCompileOptions({ filename }) {
if (
path.basename(filename) === "Clipboard.svelte" ||
path.basename(filename) === "ExternalLink.svelte" ||
path.basename(filename) === "Icon.svelte"
) {
return { customElement: true };
}
},
compilerOptions: { dev: process.env.NODE_ENV !== "production" },
}),
],
server: {
host: "localhost",
port: 3000,
watch: {
// reference: https://stackoverflow.com/a/75238360
useFsEvents: false,
},
},
resolve: {
alias: {
"@app": path.resolve("./src"),
"@public": path.resolve("./public"),
"@http-client": path.resolve("./http-client"),
"@tests": path.resolve("./tests"),
},
},
build: {
outDir: "build",
rollupOptions: {
output: {
manualChunks: id => {
if (id.includes("lodash")) {
return "lodash";
} else if (id.includes("katex")) {
return "katex";
} else if (id.includes("node_modules")) {
return "vendor";
} else if (id.includes("components")) {
return "components";
}
},
},
},
},
});