@docusaurus/core
Version:
Easy to Maintain Open Source Documentation Websites
18 lines (17 loc) • 694 B
TypeScript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import type { Configuration } from 'webpack';
import type { ConfigureWebpackUtils, FasterConfig, Props } from '@docusaurus/types';
export declare const clientDir: string;
export declare function excludeJS(modulePath: string): boolean;
export declare function createBaseConfig({ props, isServer, minify, faster, configureWebpackUtils, }: {
props: Props;
isServer: boolean;
minify: boolean;
faster: FasterConfig;
configureWebpackUtils: ConfigureWebpackUtils;
}): Promise<Configuration>;