Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Dec 16, 2024
1 parent c5e81e9 commit 7922928
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ const entries = files.reduce((acc, file) => {

const config: WebpackConfiguration = {
stats: 'minimal',
performance: {
hints: false,
},
mode: 'development',
devtool: 'source-map',
entry: entries,
Expand Down
3 changes: 3 additions & 0 deletions packages/signals/signals-example/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const bodyParser = require('body-parser')

module.exports = {
stats: 'minimal',
performance: {
hints: false,
},
entry: './src/index.tsx',
devtool: 'source-map',
mode: 'development',
Expand Down
3 changes: 3 additions & 0 deletions packages/signals/signals-integration-tests/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ const entries = files.reduce((acc, file) => {

const config: WebpackConfiguration = {
stats: 'minimal',
performance: {
hints: false,
},
mode: 'production',
devtool: 'source-map',
entry: entries,
Expand Down

0 comments on commit 7922928

Please sign in to comment.