From fca6968bff84833c90beb0dc1ce2f7fdfdd75593 Mon Sep 17 00:00:00 2001 From: jffarge Date: Wed, 30 Mar 2022 15:59:53 +0200 Subject: [PATCH] fix: :adhesive_bandage: create a dev script with REACT_APP_AMPLITUDE_ID empty Signed-off-by: jffarge --- Makefile | 2 +- website/.env.example | 1 - website/package.json | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 website/.env.example diff --git a/Makefile b/Makefile index 4cf048ec..57121f67 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ mdlint: # Markdown lint for web .PHONY: web web: # Run the website locally yarn --cwd "./website" install - yarn --cwd "./website" start + yarn --cwd "./website" dev .PHONY: todo todo: # Find all TODO items diff --git a/website/.env.example b/website/.env.example deleted file mode 100644 index 6bbcfa72..00000000 --- a/website/.env.example +++ /dev/null @@ -1 +0,0 @@ -REACT_APP_AMPLITUDE_ID= diff --git a/website/package.json b/website/package.json index 69f527c4..2fc4683f 100644 --- a/website/package.json +++ b/website/package.json @@ -4,6 +4,7 @@ "private": true, "scripts": { "docusaurus": "docusaurus", + "dev": "REACT_APP_AMPLITUDE_ID= docusaurus start", "start": "docusaurus start", "build": "docusaurus build", "swizzle": "docusaurus swizzle",