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.
12 lines
466 B
12 lines
466 B
/// <reference types="webpack-dev-server" />
|
|
import { Configuration } from 'webpack';
|
|
import { Arguments, DevConfiguration, InputEnvironment } from './types';
|
|
/**
|
|
* Create the official Webpack config for loading Expo web apps.
|
|
*
|
|
* @param env Environment props used to configure features.
|
|
* @param argv
|
|
* @category default
|
|
*/
|
|
export default function createWebpackConfigAsync(env?: InputEnvironment, argv?: Arguments): Promise<Configuration | DevConfiguration>;
|