-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
77 lines (69 loc) · 1.7 KB
/
vite.config.js
File metadata and controls
77 lines (69 loc) · 1.7 KB
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
import replace from "@rollup/plugin-replace";
import { readdirSync } from "fs";
import { resolve } from "path";
import copy from "rollup-plugin-copy-merge";
import jscc from "rollup-plugin-jscc";
import { defineConfig } from "vite";
const workerpoolImportDev = `
importScripts(
"http://localhost:3000/node_modules/workerpool/dist/workerpool.js"
);
`;
let workerpoolImportProd;
try {
workerpoolImportProd = `
importScripts("${
readdirSync(resolve(__dirname, "dist", "assets")).filter((fn) =>
fn.startsWith("workerpool")
)[0]
}")`;
} catch (e) {}
const importScripts =
process.env.NODE_ENV === "development"
? workerpoolImportDev
: workerpoolImportProd;
const replaceRules = {
IMPORT_WORKERPOOL: importScripts,
delimiters: ["", ""],
};
const copyTargets = [
{
src: [
resolve(__dirname, "worker", "worker.part1.js"),
resolve(__dirname, "worker", "worker.part2.js"),
],
file: resolve(__dirname, "worker", "CompiledWorker.js"),
},
];
const JSCC_CONFIG = {
_PRODUCTION: process.env.NODE_ENV === "production",
};
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
copy({
hook: "buildStart",
targets: copyTargets,
}),
copy({
hook: "transform",
prevent: (context, targets) =>
context._activeId &&
context._activeId.indexOf("CompiledWorker.js") >= 0,
targets: copyTargets,
}),
replace(replaceRules),
jscc(JSCC_CONFIG),
],
build: {
rollupOptions: {
plugins: [replace(replaceRules), jscc(JSCC_CONFIG)],
output: {
manualChunks: {
workerpool: ["workerpool"],
// CompiledWorker: ["./worker/CompiledWorker.js"],
},
},
},
},
});