Skip to content

Commit

Permalink
webpack: disable performance hints
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Feb 5, 2025
1 parent 1e6ecf5 commit d29ace1
Show file tree
Hide file tree
Showing 18 changed files with 72 additions and 18 deletions.
5 changes: 4 additions & 1 deletion demos/BunnyMark/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion demos/NyanCat/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion demos/PiratePig/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display/AddingAnimation/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display/DisplayingABitmap/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display/DrawingShapes/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display/UsingBitmapData/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display/UsingSWFAssets/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display3D/HelloTriangle/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display3D/Stage3DCamera/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/display3D/Stage3DMipmap/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/events/CreatingAMainLoop/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/events/CreatingCustomEvents/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/events/HandlingKeyboardEvents/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/events/HandlingMouseEvents/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/media/PlayingSound/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/media/PlayingVideo/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};
5 changes: 4 additions & 1 deletion features/text/AddingText/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ module.exports = {
"public"
]
})
]
],
performance: {
hints: false
}
};

0 comments on commit d29ace1

Please sign in to comment.