-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetro.config.js
30 lines (27 loc) · 887 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
29
30
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
const sourceExts = require('metro-config/src/defaults/defaults').sourceExts;
const assetExts = require('metro-config/src/defaults/defaults').assetExts;
/**
* Metro configuration
* https://facebook.github.io/metro/docs/configuration
*
* @type {import('metro-config').MetroConfig}
*/
const config = {
transformer: {
babelTransformerPath: require.resolve('react-native-svg-transformer'),
getTransformOptions: async () => {
return {
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
};
},
},
resolver: {
assetExts: assetExts.filter((ext) => { return ext !== 'svg'; }),
sourceExts: [...sourceExts, 'svg'],
},
};
module.exports = mergeConfig(getDefaultConfig(__dirname), config);