fix: exclude archives from bridgeable output

This commit is contained in:
2026-04-28 17:07:42 -06:00
parent 6d160ba49f
commit ef860862cb
+3 -1
View File
@@ -29,6 +29,7 @@ export const shouldCopyFile = (name) => {
return ![
'.css',
'.gz',
'.gif',
'.jpeg',
'.jpg',
@@ -38,7 +39,8 @@ export const shouldCopyFile = (name) => {
'.svg',
'.webp',
'.woff',
'.woff2'
'.woff2',
'.zip'
].includes(extname(name));
};