@unitools/fonts
v0.0.2
Published
### This is the official documentation for the @unitools/metro-config package.
Keywords
Readme
@unitools/metro-config [ALPHA]
This is the official documentation for the @unitools/metro-config package.
Features
- Support for .expo-web.{js|ts|jsx|tsx} file extensions.
Installation
To install @unitools/metro-config, use either of the following commands:
npm install @unitools/metro-configor
yarn add @unitools/metro-configUsage
Add following to your metro.config.js file.
const { getDefaultConfig } = require("expo/metro-config");
const { withUnitools } = require("@unitools/metro-config");
const projectRoot = __dirname;
const config = getDefaultConfig(projectRoot, {});
module.exports = withUnitools(config);