You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
429 B
14 lines
429 B
import { AnyConfiguration } from '../types';
|
|
/**
|
|
* Returns `true` if the Expo web environment variable enabled.
|
|
* @internal
|
|
*/
|
|
export declare function isDebugMode(): boolean;
|
|
/**
|
|
* Add the minifier and other optimizations for production builds.
|
|
*
|
|
* @param webpackConfig Existing Webpack config to modify.
|
|
* @category addons
|
|
*/
|
|
export default function withOptimizations(webpackConfig: AnyConfiguration): AnyConfiguration;
|