From 02b65b56e67d1399c2f4a75f186d9215cdc6a472 Mon Sep 17 00:00:00 2001 From: Chance Hudson Date: Sun, 20 Mar 2022 19:58:01 -0500 Subject: [PATCH] fix: disable strict ssl :/ --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9dc0fb7..8a2a4a9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,7 @@ jobs: - checkout - run: name: Install - command: npm i -g npm && npx lerna bootstrap --force-local + command: npm i -g npm && npm config set strict-ssl false && npx lerna bootstrap --force-local - run: name: Build command: cd packages/demosite && npm run build -- --mode=production && npm run html