@leftoverstoday/metro-config
v0.0.1
Published
WunderGraph Metro Config for React Native and Expo
Downloads
15
Maintainers
Readme
WunderGraph Metro Config
Official WunderGraph Metro Config for React Native and Expo.
Getting Started
npm install @wundergraph/metro-configConfiguration
metro.config.js
// Learn more https://docs.expo.io/guides/customizing-metro
const { wgMetroConfig } = require('@wundergraph/metro-config');
const { getDefaultConfig } = require('expo/metro-config');
const config = getDefaultConfig(__dirname);
module.exports = wgMetroConfig(config);Advanced
In case you have a custom Metro transformer configured, you can import the WunderGraph transformer and add it to your custom transformer.
// custom-transformer.js
const { transform } = require('@wundergraph/metro-config/transformer');
module.exports = {
transform(file) {
// custom transforms
return transform(file);
},
};Usage
After configuration the metro config you can use @wundergraph/swr or @wundergraph/react-query in your React Native or Expo project.
