mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-01 03:08:17 +02:00
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const path = require('path');
|
|
const webpackNiceLog = require('webpack-nicelog');
|
|
const {StatsWriterPlugin} = require('webpack-stats-plugin');
|
|
const {ReactLoadablePlugin} = require('react-loadable/webpack');
|
|
const cleanWebpackPlugin = require('clean-webpack-plugin');
|
|
const createBaseConfig = require('./base');
|
|
const {applyChainWebpack} = require('./utils');
|
|
|
|
module.exports = function createClientConfig(props) {
|
|
const config = createBaseConfig(props);
|
|
config.entry('main').add(path.resolve(__dirname, '../core/clientEntry.js'));
|
|
|
|
// Remove/clean build folders before building bundles.
|
|
const {outDir} = props;
|
|
config
|
|
.plugin('clean')
|
|
.use(cleanWebpackPlugin, [outDir, {verbose: false, allowExternal: true}]);
|
|
|
|
// write webpack stats object so we can pickup correct client bundle path in server.
|
|
config
|
|
.plugin('client-stats')
|
|
.use(StatsWriterPlugin, [{filename: 'client.stats.json'}]);
|
|
config
|
|
.plugin('react-loadable-stats')
|
|
.use(ReactLoadablePlugin, [
|
|
{filename: path.join(outDir, 'react-loadable.json')},
|
|
]);
|
|
|
|
// Show compilation progress bar and build time.
|
|
const isProd = process.env.NODE_ENV === 'production';
|
|
config
|
|
.plugin('niceLog')
|
|
.use(webpackNiceLog, [{name: 'Client', skipBuildTime: isProd}]);
|
|
|
|
// user extended webpack-chain config
|
|
applyChainWebpack(props.siteConfig.chainWebpack, config, false);
|
|
|
|
return config;
|
|
};
|