UNPKG

@expo/webpack-config

Version:

The default Webpack configuration used to build Expo apps targeting the web.

11 lines (10 loc) 386 B
import { ExpoConfig } from '@expo/config'; import { Environment } from '../types'; /** * Get the Expo project config in a way that's optimized for web. * * @param env Environment properties used for getting the Expo project config. * @category env */ declare function getConfig(env: Pick<Environment, 'projectRoot' | 'config' | 'locations'>): ExpoConfig; export default getConfig;