microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
test/resources/newVersionReactNativeProject/metro.config.js
11lines · modecode
| 1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config'); |
| 2 | |
| 3 | /** |
| 4 | * Metro configuration |
| 5 | * https://facebook.github.io/metro/docs/configuration |
| 6 | * |
| 7 | * @type {import('metro-config').MetroConfig} |
| 8 | */ |
| 9 | const config = {}; |
| 10 | |
| 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); |
| 12 | |