* updating from RN 0.75.4 -> 0.77.2 and EXP 51 -> 52 * fixed slider * fix function naming * bug fixes * improved tx sorting * adding check to ecash invoices to not double pay * revert to legacy way * bug fixes * remove dep install * trying to fix workflow * removed old sliderbutton * set registry + retry if fails
13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
const {getDefaultConfig} = require('expo/metro-config');
|
|
const {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);
|