From 2df0ca178c751b41f142478891c07650841c4a7b Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Fri, 3 Mar 2023 09:56:33 -0800 Subject: [PATCH] build: fix vanilla-extract for M1 (#6058) --- craco.config.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/craco.config.cjs b/craco.config.cjs index c2227d4bd9..431aa977ac 100644 --- a/craco.config.cjs +++ b/craco.config.cjs @@ -22,7 +22,7 @@ module.exports = { }, webpack: { plugins: [ - new VanillaExtractPlugin(), + new VanillaExtractPlugin({ identifiers: 'short' }), new DefinePlugin({ 'process.env.REACT_APP_GIT_COMMIT_HASH': JSON.stringify(commitHash.toString()), }),