2024-05-15 01:57:29 +00:00
|
|
|
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
|
|
|
|
|
2019-04-22 13:26:46 +00:00
|
|
|
/**
|
2024-05-15 01:57:29 +00:00
|
|
|
* Metro configuration
|
|
|
|
* https://reactnative.dev/docs/metro
|
2019-04-22 13:26:46 +00:00
|
|
|
*
|
2024-05-15 01:57:29 +00:00
|
|
|
* @type {import('metro-config').MetroConfig}
|
2019-04-22 13:26:46 +00:00
|
|
|
*/
|
2024-05-15 01:57:29 +00:00
|
|
|
const config = {};
|
2019-04-22 13:26:46 +00:00
|
|
|
|
2024-05-15 01:57:29 +00:00
|
|
|
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|