@expo/webpack-config
Version:
A Webpack configuration used to bundle Expo websites with Expo CLI.
19 lines (18 loc) • 519 B
TypeScript
import { Compiler } from 'webpack';
import JsonWebpackPlugin from './JsonWebpackPlugin';
export declare type Icon = {
src: string;
sizes: string;
type: 'image/png';
};
export declare type PwaManifestOptions = {
path: string;
inject?: boolean | Function;
publicPath: string;
};
export default class PwaManifestWebpackPlugin extends JsonWebpackPlugin {
private pwaOptions;
rel: string;
constructor(pwaOptions: PwaManifestOptions, manifest: any);
apply(compiler: Compiler): void;
}