@expo/webpack-config
Version:
A Webpack configuration used to bundle Expo websites with Expo CLI.
11 lines (10 loc) • 331 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, templateHtmlData?: any);
}