From e005795c87bb2605eeace1fc04a787448ae192ff Mon Sep 17 00:00:00 2001 From: William Chong Date: Thu, 12 Sep 2024 23:33:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Ignore=20json-ld=20error=20for?= =?UTF-8?q?=20safari=20in=20sentry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nuxt.config.js b/nuxt.config.js index 827c683e..aade437d 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -187,7 +187,10 @@ export default { Replay: {}, }, clientConfig: { - ignoreErrors: ['WebAssembly.instantiate'], + ignoreErrors: [ + 'WebAssembly.instantiate', + '["@context"].toLowerCase', + ], replaysSessionSampleRate: IS_TESTNET ? 1.0 : 0.05, replaysOnErrorSampleRate: IS_TESTNET ? 1.0 : 1.0, },