From 31aad8f033e4c3c470a0e79742bbd759b8843d84 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Fri, 30 Jan 2026 23:02:07 -0800 Subject: [PATCH] fix(vite): incremental build file changes --- lib/services/bundler/bundler-compiler-service.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/services/bundler/bundler-compiler-service.ts b/lib/services/bundler/bundler-compiler-service.ts index 91ddad3fe0..3eb880b2ba 100644 --- a/lib/services/bundler/bundler-compiler-service.ts +++ b/lib/services/bundler/bundler-compiler-service.ts @@ -916,13 +916,9 @@ export class BundlerCompilerService const filesToCopy: string[] = []; - // default to ignoring vendor files as they are less likely to change during live reloads const bundleFiles = emittedFiles.filter( (file) => - !file.includes("vendor") && - (file.endsWith(".mjs") || - file.endsWith(".js") || - file.endsWith(".map")), + file.endsWith(".mjs") || file.endsWith(".js") || file.endsWith(".map"), ); filesToCopy.push(...bundleFiles);