forked from a-ghorbani/pocketpal-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetro.config.js
28 lines (24 loc) · 831 Bytes
/
metro.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
//const localPackagePaths = ['localpath/code/llama.rn'];
const defaultConfig = getDefaultConfig(__dirname);
const {assetExts, sourceExts} = defaultConfig.resolver;
const config = {
resolver: {
//nodeModulesPaths: [...localPackagePaths], // update to resolver
assetExts: assetExts.filter(ext => ext !== 'svg'),
sourceExts: [...sourceExts, 'svg'],
},
transformer: {
babelTransformerPath: require.resolve(
'react-native-svg-transformer/react-native',
),
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
}),
},
//watchFolders: [...localPackagePaths],
};
module.exports = mergeConfig(getDefaultConfig(__dirname), config);