fix(dash): split out highlight.js into a separate minified file
This commit is contained in:
parent
fdf118e301
commit
3c21349572
@ -9,5 +9,18 @@ export default defineConfig({
|
|||||||
build: {
|
build: {
|
||||||
outDir: "dist",
|
outDir: "dist",
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
rollupOptions: {
|
||||||
|
manualChunks(filename) {
|
||||||
|
filename = filename.split("node_modules");
|
||||||
|
if (filename.length < 2) return 'index';
|
||||||
|
else filename = filename[1];
|
||||||
|
|
||||||
|
// this is really big and makes the map size go over the sentry file cache limit
|
||||||
|
if (filename.includes("highlight.js")) return 'vendor-0';
|
||||||
|
|
||||||
|
return 'vendor-1';
|
||||||
|
// return `vendor-${filename.charCodeAt(1) % 2}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user