1
0
Fork 0
phizclip-react-native-demo/metro.config.js

19 lines
319 B
JavaScript
Raw Normal View History

2021-08-31 14:18:30 +08:00
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
2020-04-13 19:06:07 +08:00
module.exports = {
2022-04-21 13:55:54 +08:00
resetCache: true,
2021-08-31 14:18:30 +08:00
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
}),
2020-04-13 19:06:07 +08:00
},
2021-08-31 14:18:30 +08:00
};