forked from cerc-io/laconic-wallet
* Sign in using selected address * Use optional namespace * Merge namespaces and use combined namespace * Add todo for lodash merge * Use walletConnect util buildApprovedNamespaces while approving sessions * Lint fixes --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com> Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
|
|
|
/**
|
|
* Metro configuration
|
|
* https://facebook.github.io/metro/docs/configuration
|
|
*
|
|
* @type {import('metro-config').MetroConfig}
|
|
*/
|
|
const config = {};
|
|
|
|
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|