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;