From 91fbd33b5feeea9f4fae13f031c246e2c416cd50 Mon Sep 17 00:00:00 2001 From: Carlen White Date: Wed, 27 Sep 2023 23:11:34 -0400 Subject: [PATCH] Fix webpack on aarch64 (and potentially others) Swapping out the deprecated `node-sass` with `sass` allows a aarach64 Android device to webpack successfully. Otherwise, `node-sass` emits errors about `undefined-symbol` and webpack fails. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1262531..8d99b3d 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "extract-loader": "^5.1.0", "file-loader": "^6.2.0", "lodash": "^4.17.20", - "node-sass": "^7.0.1", + "sass": "^1.68.0", "optimize-css-assets-webpack-plugin": "^5.0.4", "qs": "^6.9.4", "raven-js": "^3.27.2",