Skip to content

Commit 216f924

Browse files
committed
Fix APK build break
1 parent 921f711 commit 216f924

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

metro.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* @format
66
*/
77

8+
const blacklist = require('metro-config/src/defaults/blacklist');
9+
810
module.exports = {
911
transformer: {
1012
getTransformOptions: async () => ({
@@ -14,4 +16,7 @@ module.exports = {
1416
},
1517
}),
1618
},
19+
resolver: {
20+
blacklistRE: blacklist([/js_dist\/.*/]),
21+
},
1722
};

0 commit comments

Comments
 (0)