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);