mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-06 05:32:11 +08:00
22 lines
433 B
JavaScript
22 lines
433 B
JavaScript
|
const defaultConfig = require('@wordpress/scripts/config/webpack.config');
|
||
|
|
||
|
const isProduction = process.env.NODE_ENV === 'production';
|
||
|
|
||
|
const newConfig = {
|
||
|
...defaultConfig,
|
||
|
|
||
|
// Display minimum info in terminal.
|
||
|
stats: 'minimal',
|
||
|
};
|
||
|
|
||
|
// Development only.
|
||
|
if (!isProduction) {
|
||
|
newConfig.devServer = {
|
||
|
...newConfig.devServer,
|
||
|
// Support for dev server on all domains.
|
||
|
allowedHosts: 'all',
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = newConfig;
|