13 lines
392 B
JavaScript
13 lines
392 B
JavaScript
// Learn more https://docs.expo.io/guides/customizing-metro
|
|
const { getDefaultConfig } = require('expo/metro-config');
|
|
|
|
/** @type {import('expo/metro-config').MetroConfig} */
|
|
const config = getDefaultConfig(__dirname);
|
|
|
|
// metro.config.js
|
|
const {
|
|
wrapWithReanimatedMetroConfig,
|
|
} = require('react-native-reanimated/metro-config');
|
|
|
|
module.exports = wrapWithReanimatedMetroConfig(config);
|