Skip to content

Commit 7922928

Browse files
committed
wip
1 parent c5e81e9 commit 7922928

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

packages/consent/consent-tools-integration-tests/webpack.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ const entries = files.reduce((acc, file) => {
1616

1717
const config: WebpackConfiguration = {
1818
stats: 'minimal',
19+
performance: {
20+
hints: false,
21+
},
1922
mode: 'development',
2023
devtool: 'source-map',
2124
entry: entries,

packages/signals/signals-example/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ const bodyParser = require('body-parser')
1313

1414
module.exports = {
1515
stats: 'minimal',
16+
performance: {
17+
hints: false,
18+
},
1619
entry: './src/index.tsx',
1720
devtool: 'source-map',
1821
mode: 'development',

packages/signals/signals-integration-tests/webpack.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ const entries = files.reduce((acc, file) => {
1919

2020
const config: WebpackConfiguration = {
2121
stats: 'minimal',
22+
performance: {
23+
hints: false,
24+
},
2225
mode: 'production',
2326
devtool: 'source-map',
2427
entry: entries,

0 commit comments

Comments
 (0)