blob: 2a0a21ce47e258e95dd4cae30afc48152fbc7347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
/**
* Metro configuration
* https://reactnative.dev/docs/metro
*
* @type {import('@react-native/metro-config').MetroConfig}
*/
const config = {};
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|