···11-22-# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
33-# The following patterns were generated by expo-cli
44-55-expo-env.d.ts
66-# @end expo-cli
···11-const path = require("node:path");
22-const { getDefaultConfig } = require("expo/metro-config");
33-const { withNativeWind } = require("nativewind/metro");
44-55-const projectRoot = __dirname;
66-const workspaceRoot = path.resolve(projectRoot, "../..");
77-88-/** @type {import('metro-config').MetroConfig} */
99-const config = getDefaultConfig(projectRoot);
1010-1111-// Watch the workspace root so changes in shared packages are picked up
1212-config.watchFolders = [workspaceRoot];
1313-1414-// Resolve modules from the app and the workspace root node_modules
1515-config.resolver.nodeModulesPaths = [
1616- path.resolve(projectRoot, "node_modules"),
1717- path.resolve(workspaceRoot, "node_modules")
1818-];
1919-2020-// Enable symlink support for pnpm
2121-config.resolver.unstable_enableSymlinks = true;
2222-2323-module.exports = withNativeWind(config, { input: "./global.css" });
-3
apps/mobile/nativewind-env.d.ts
···11-/// <reference types="nativewind/types" />
22-33-// NOTE: This file should not be edited and should be committed with your source code. It is generated by NativeWind.