mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 17:53:25 +00:00
28 lines
981 B
JavaScript
28 lines
981 B
JavaScript
// Learn more https://docs.expo.io/guides/customizing-metro
|
|
const { getDefaultConfig } = require('expo/metro-config');
|
|
const path = require('path');
|
|
|
|
const projectRoot = __dirname;
|
|
const workspaceRoot = path.resolve(projectRoot, '../..');
|
|
|
|
/** @type {import('expo/metro-config').MetroConfig} */
|
|
const config = getDefaultConfig(projectRoot, {
|
|
// [Web-only]: Enables CSS support in Metro.
|
|
isCSSEnabled: true,
|
|
});
|
|
|
|
if (config.resolver) {
|
|
// 1. Watch all files within the monorepo
|
|
config.watchFolders = [workspaceRoot];
|
|
// 2. Let Metro know where to resolve packages and in what order
|
|
config.resolver.nodeModulesPaths = [
|
|
path.resolve(projectRoot, 'node_modules'),
|
|
path.resolve(workspaceRoot, 'node_modules'),
|
|
];
|
|
// 3. Force Metro to resolve (sub)dependencies only from the `nodeModulesPaths`
|
|
// TODO: This is supposed to be true, but I couldn't get it to work in the monorepo.
|
|
config.resolver.disableHierarchicalLookup = false;
|
|
}
|
|
|
|
module.exports = config;
|