Files
Greenlens/metro.config.js
2026-03-29 10:26:38 -05:00

14 lines
323 B
JavaScript

const { getDefaultConfig } = require('expo/metro-config');
const path = require('path');
const config = getDefaultConfig(__dirname);
// Exclude server and landing page from the Metro bundle
config.resolver.blockList = [
/server\/.*/,
/greenlns-landing\/.*/,
/landing\/.*/,
];
module.exports = config;