BlueWallet/metro.config.js

12 lines
287 B
JavaScript
Raw Normal View History

2024-06-15 21:26:13 -04:00
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
2021-06-24 12:46:08 -04:00
/**
2024-06-15 21:26:13 -04:00
* Metro configuration
* https://reactnative.dev/docs/metro
2021-06-24 12:46:08 -04:00
*
2024-06-15 21:26:13 -04:00
* @type {import('metro-config').MetroConfig}
2021-06-24 12:46:08 -04:00
*/
2024-06-15 21:26:13 -04:00
const config = {};
2021-06-24 12:46:08 -04:00
2024-06-15 21:26:13 -04:00
module.exports = mergeConfig(getDefaultConfig(__dirname), config);