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 ![ return ![
'.css', '.css',
'.gz',
'.gif', '.gif',
'.jpeg', '.jpeg',
'.jpg', '.jpg',
@@ -38,7 +39,8 @@ export const shouldCopyFile = (name) => {
'.svg', '.svg',
'.webp', '.webp',
'.woff', '.woff',
'.woff2' '.woff2',
'.zip'
].includes(extname(name)); ].includes(extname(name));
}; };