forked from openWB/openwb-ui-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
98 lines (96 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import { defineConfig } from "vite";
import Vue from "@vitejs/plugin-vue";
import { nodePolyfills } from "vite-plugin-node-polyfills";
import rollupNodePolyFill from "rollup-plugin-node-polyfills";
export default defineConfig(({ command, mode }) => {
var myConfiguration = {
plugins: [Vue()],
base: "/openWB/web/settings/",
};
if (command === "serve") {
if (mode === "test") {
myConfiguration["test"] = {
globals: true,
environment: "jsdom",
};
} else {
myConfiguration.plugins.push(
nodePolyfills({
// Whether to polyfill `node:` protocol imports.
protocolImports: true,
}),
);
myConfiguration.server = {
proxy: {
"/ws": {
target: "ws://localhost:9001",
ws: true,
},
},
};
}
} else {
myConfiguration.plugins.push(
nodePolyfills({
// Whether to polyfill `node:` protocol imports.
protocolImports: true,
}),
);
myConfiguration.build = {
rollupOptions: {
plugins: [rollupNodePolyFill()],
output: {
manualChunks(id) {
if (id.includes("node_modules")) {
if (id.includes("fortawesome")) {
return "vendor-fortawesome";
}
if (id.includes("bootstrap")) {
return "vendor-bootstrap";
}
if (
id.includes("chart.js") ||
id.includes("chartjs")
) {
return "vendor-chartjs";
}
// if (id.includes("mqtt")) {
// return "vendor-mqtt";
// }
if (id.includes("axios")) {
return "vendor-axios";
}
if (id.includes("luxon")) {
return "vendor-luxon";
}
// if (id.includes("lodash")) {
// return "vendor-lodash";
// }
if (id.includes("jquery")) {
return "vendor-jquery";
}
if (id.includes("sortablejs")) {
return "vendor-sortablejs";
}
// if (id.includes("browserify")) {
// return "vendor-browserify";
// }
// if (id.includes("node-stdlib-browser")) {
// return "vendor-node-stdlib-browser";
// }
// if (id.includes("readable-stream")) {
// return "vendor-readable-stream";
// }
// if (id.includes("@vue")) {
// return "vendor-vue";
// }
// console.log("vendor chunk: " + id);
return "vendor";
}
},
},
},
};
}
return myConfiguration;
});