diff --git a/programs/develop/webpack/config/logging.ts b/programs/develop/webpack/config/logging.ts index ba2c5a56..2db48d21 100644 --- a/programs/develop/webpack/config/logging.ts +++ b/programs/develop/webpack/config/logging.ts @@ -10,19 +10,15 @@ import {type ClientConfiguration} from 'webpack-dev-server' const authorMode = process.env.EXTENSION_ENV === 'development' export function getWebpackStats() { - if (!authorMode) { - return 'minimal' - } - - return { - children: false, - errorDetails: true, - entrypoints: false, - colors: true, - assets: false, - chunks: false, - modules: false - } + return { + children: true, + errorDetails: true, + entrypoints: false, + colors: true, + assets: false, + chunks: false, + modules: false + } } export function getDevServerClientOptions(): ClientConfiguration {