From 94f881838c5b9a03e307184a1b73de2ffc68a31a Mon Sep 17 00:00:00 2001 From: "Adolfo R. Brandes" Date: Thu, 5 Dec 2024 18:18:10 -0300 Subject: [PATCH] fix: Use browserslist-config We were installing browserslist-config but not declaring it. This had the effect that webpack - and likely others - were not using it. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 7f696989..163abd9f 100755 --- a/package.json +++ b/package.json @@ -6,6 +6,9 @@ "type": "git", "url": "git+https://github.com/edx/frontend-app-ora-grading.git" }, + "browserslist": [ + "extends @edx/browserslist-config" + ], "scripts": { "build": "fedx-scripts webpack", "i18n_extract": "fedx-scripts formatjs extract",