From f7969ec9a3b12630d91526a220098ead636b23e9 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Fri, 26 Jan 2024 12:19:09 +1100 Subject: [PATCH] fix: disable hmr (as it only partially works, and breaks other things) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1ca7e66d..60e9670c 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "module", "description": "BetterSEQTA+ is a browser extension that adds features to SEQTA.", "scripts": { - "dev": "parcel watch manifest.json --host localhost --config @parcel/config-webextension", + "dev": "parcel watch manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash", "build": "parcel build manifest.json --config @parcel/config-webextension --no-content-hash", "eslint": "eslint --fix ." },