Skip to content

Commit

Permalink
chore: reduce correct logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Caele committed Sep 9, 2021
1 parent a837bf9 commit cb39e01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 0 additions & 4 deletions commands/serve/lib/webpack.build.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ const cfg = ({ srcDir, distDir, dev = false, serveConfig = {} }) => {
path: distDir,
filename: '[name].js',
},
infrastructureLogging: {
level: 'error',
},
stats: 'errors-only',
resolve: {
alias: {
'@nebula.js/stardust': path.resolve(__dirname, '../../../apis/stardust/src'),
Expand Down
4 changes: 4 additions & 0 deletions commands/serve/lib/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ const cfg = ({ srcDir = path.resolve(__dirname, '../dist'), serveConfig = {} })
mode: 'development',
entry: path.resolve(__dirname, './sn.js'),
devtool: false,
infrastructureLogging: {
level: 'error',
},
stats: 'errors-only',
output: {
path: path.resolve(srcDir, 'temp'),
filename: '[name].js',
Expand Down

0 comments on commit cb39e01

Please sign in to comment.