@expo/webpack-config
Version:
A Webpack configuration used to bundle Expo websites with Expo CLI.
12 lines (11 loc) • 452 B
TypeScript
import type { 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 ExpoPwaManifestWebpackPlugin extends PwaManifestWebpackPlugin {
constructor(pwaOptions: ExpoPwaManifestOptions, config: ExpoConfig);
}