Merged in fix/sw-2763-external-scripts (pull request #2104)
fix: try/catch external scripts to avoid them breaking our page #sw-2763 * fix: try/catch external scripts to avoid them breaking our page #sw-2763 Approved-by: Joakim Jäderberg
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import * as Sentry from "@sentry/nextjs"
|
||||
import Script from "next/script"
|
||||
|
||||
import { env } from "@/env/server"
|
||||
@@ -8,6 +9,10 @@ export default function AdobeSDKScript() {
|
||||
data-cookieconsent="statistics"
|
||||
src={env.ADOBE_SDK_SCRIPT_SRC}
|
||||
async
|
||||
onError={(e) => {
|
||||
console.error("Failed to load AdobeSDK script", e)
|
||||
Sentry.captureException(e)
|
||||
}}
|
||||
/>
|
||||
) : null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user