BlueWallet/metro.config.js

12 lines
287 B
JavaScript
Raw Normal View History

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