Created
July 25, 2022 22:45
-
-
Save HallexCosta/22567863e04ad86c651f15f7952fa5dc to your computer and use it in GitHub Desktop.
Example of configure metro.config.js in Expo
This file contains 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 { createMetroConfiguration } = require('expo-yarn-workspaces') | |
const { getDefaultConfig } = require('metro-config') | |
const configuration = createMetroConfiguration(__dirname) | |
module.exports = (async () => { | |
const { | |
resolver: { sourceExts } | |
} = await getDefaultConfig() | |
return { | |
...configuration, | |
transformer: { | |
...configuration.transformer, | |
babelTransformerPath: require.resolve('react-native-svg-transformer') | |
}, | |
resolver: { | |
...configuration.resolver, | |
assetExts: configuration.resolver.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