diff --git a/dashboard/vite.config.js b/dashboard/vite.config.js index fdfe8c31..0ae16832 100644 --- a/dashboard/vite.config.js +++ b/dashboard/vite.config.js @@ -9,5 +9,18 @@ export default defineConfig({ build: { outDir: "dist", 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}`; + } + } } })