UNPKG

624 BTypeScriptView Raw
1import { Config as Args } from '../commands/args';
2import { ServerHooks } from '../Bundler';
3export declare const devServerConfig: (hooks: ServerHooks, args: Args) => {
4 publicPath: string;
5 compress: boolean;
6 clientLogLevel: string;
7 contentBase: string;
8 watchContentBase: boolean;
9 hot: boolean;
10 quiet: boolean;
11 open: boolean;
12 watchOptions: {
13 ignored: any;
14 };
15 overlay: boolean;
16 host: string;
17 port: number;
18 historyApiFallback: {
19 disableDotRule: boolean;
20 };
21 before(app: any, server: any): void;
22 after(app: any): void;
23};