From 710336208fdcfb973a9af5442ba6eda0376e3d40 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Thu, 16 Nov 2023 14:45:31 +0100 Subject: [PATCH] Allow config.json to be missing --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index eb0fb1046b..6df4fa9130 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -723,7 +723,7 @@ module.exports = (env, argv) => { { from: "decoder-ring/**", context: path.resolve(__dirname, "res") }, { from: "media/**", context: path.resolve(__dirname, "node_modules/matrix-react-sdk/res/") }, "node_modules/@matrix-org/olm/olm_legacy.js", - "config.json", + { from: "config.json", noErrorOnMissing: true }, "contribute.json", ], }),