UNPKG

@expo/webpack-config

Version:

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

12 lines (11 loc) 448 B
import { ExpoConfig } from '@expo/config'; import PwaManifestWebpackPlugin, { PwaManifestOptions } from './PwaManifestWebpackPlugin'; export declare type ExpoPwaManifestOptions = PwaManifestOptions & { /** * The path to a template manifest.json. */ template: string; }; export default class ExpoAppManifestWebpackPlugin extends PwaManifestWebpackPlugin { constructor(pwaOptions: ExpoPwaManifestOptions, config: ExpoConfig); }