mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 21:58:54 +00:00
15 lines
402 B
JavaScript
15 lines
402 B
JavaScript
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
|
const path = require('path');
|
|
const root = path.resolve(__dirname, '..');
|
|
|
|
/**
|
|
* Metro configuration
|
|
* https://facebook.github.io/metro/docs/configuration
|
|
*
|
|
* @type {import('metro-config').MetroConfig}
|
|
*/
|
|
const config = {
|
|
watchFolders: [root],
|
|
};
|
|
|
|
module.exports = mergeConfig(getDefaultConfig(__dirname), config); |