From e0de4d1b367fe09822d35230bbf858b587064607 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 21 Oct 2023 12:51:06 +0200 Subject: [PATCH] Set targets.default.context in package.json parcel doesn't auto-detect that field properly due to "engines". Closes: https://todo.sr.ht/~emersion/gamja/158 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index c48401a..3628469 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "targets": { "default": { "source": "index.html", + "context": "browser", "publicUrl": "." } },