From 633f41768888a3def833e3d63fa7bc7c31975e39 Mon Sep 17 00:00:00 2001 From: Thorsten Hans Date: Sun, 2 Feb 2025 15:07:48 +0100 Subject: [PATCH] chore: disable webpack performance hints Signed-off-by: Thorsten Hans --- templates/http-js/content/webpack.config.js | 5 ++++- templates/http-ts/content/webpack.config.js | 5 ++++- templates/redis-js/content/webpack.config.js | 5 ++++- templates/redis-ts/content/webpack.config.js | 5 ++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/templates/http-js/content/webpack.config.js b/templates/http-js/content/webpack.config.js index ab19bf51..70ed621d 100644 --- a/templates/http-js/content/webpack.config.js +++ b/templates/http-js/content/webpack.config.js @@ -20,4 +20,7 @@ module.exports = { optimization: { minimize: false }, -}; \ No newline at end of file + performance: { + hints: false, + } +}; diff --git a/templates/http-ts/content/webpack.config.js b/templates/http-ts/content/webpack.config.js index af891fd5..dac0a25f 100644 --- a/templates/http-ts/content/webpack.config.js +++ b/templates/http-ts/content/webpack.config.js @@ -32,4 +32,7 @@ module.exports = { optimization: { minimize: false }, -}; \ No newline at end of file + performance: { + hints: false, + } +}; diff --git a/templates/redis-js/content/webpack.config.js b/templates/redis-js/content/webpack.config.js index ab19bf51..70ed621d 100644 --- a/templates/redis-js/content/webpack.config.js +++ b/templates/redis-js/content/webpack.config.js @@ -20,4 +20,7 @@ module.exports = { optimization: { minimize: false }, -}; \ No newline at end of file + performance: { + hints: false, + } +}; diff --git a/templates/redis-ts/content/webpack.config.js b/templates/redis-ts/content/webpack.config.js index af891fd5..dac0a25f 100644 --- a/templates/redis-ts/content/webpack.config.js +++ b/templates/redis-ts/content/webpack.config.js @@ -32,4 +32,7 @@ module.exports = { optimization: { minimize: false }, -}; \ No newline at end of file + performance: { + hints: false, + } +};