From f108dd62c5ff802483b17f1d50e57af7abedbd62 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 31 May 2023 14:39:34 +0200 Subject: [PATCH] Bower: disable `strict-ssl` I had to disable strict SSL on Bower due to an error with jQuery: https://github.com/bower/bower/issues/2608 I'm not sure if this is strictly required, but I'm creating a PR in case we need to this in production as well. Related #10356 --- .bowerrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .bowerrc diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 00000000000..7a3188ec06f --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "strict-ssl": false +}