Created
March 24, 2020 19:26
-
-
Save majirosstefan/0186130b7a57876c146924f1d45e2432 to your computer and use it in GitHub Desktop.
metro.config.js for SVGs support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {getDefaultConfig} = require('metro-config'); | |
module.exports = (async () => { | |
const { | |
resolver: {sourceExts, assetExts}, | |
} = await getDefaultConfig(); | |
return { | |
transformer: { | |
babelTransformerPath: require.resolve('react-native-svg-transformer'), | |
}, | |
resolver: { | |
assetExts: assetExts.filter(ext => ext !== 'svg'), | |
sourceExts: [...sourceExts, 'svg'], | |
}, | |
}; | |
})(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment