From 0afaef350a65bb26e8168c7a0ac679367ed8dfa5 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sun, 20 Dec 2020 15:33:41 -0800 Subject: [PATCH] perf: remove lookup-closest-locale (#1911) --- webpack/shared.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack/shared.config.js b/webpack/shared.config.js index bf870d19..6f758fcb 100644 --- a/webpack/shared.config.js +++ b/webpack/shared.config.js @@ -25,7 +25,8 @@ const resolve = { alias: { // All browsers we target support Intl.PluralRules, so format-message-interpret can fall back to that. This file is // pretty big (9.83kB) and it's not needed. - './plurals': 'lodash-es/noop' + './plurals': 'lodash-es/noop', + 'lookup-closest-locale': 'lodash-es/noop' // small, but also not needed } }