@expo/webpack-config
Version:
The default Webpack configuration used to build Expo apps targeting the web.
11 lines (10 loc) • 307 B
TypeScript
import OriginalHtmlWebpackPlugin from 'html-webpack-plugin';
import { Environment } from '../types';
/**
* Generates an `index.html` file with the <script> injected.
*
* @category plugins
*/
export default class HtmlWebpackPlugin extends OriginalHtmlWebpackPlugin {
constructor(env: Environment);
}