From a72a3d89527f4317f8bfb852521ca2bb171b5d04 Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Tue, 20 Feb 2024 23:36:33 -0800 Subject: [PATCH] Only parallel file ops --- webapp/vite.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 6e39f60..3a38dbd 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -32,6 +32,8 @@ export default defineConfig({ ], build: { rollupOptions: { + // https://github.com/vitejs/vite/issues/10506#issuecomment-1367718113 + maxParallelFileOps: 1, plugins: [ // externalGlobals() would be nice, but doesn't seem to work // externalGlobals({ diff_match_patch: "diff_match_patch" }),