This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Sentry from "@sentry/node" | |
// Initialize Sentry | |
Sentry.init({ | |
debug: true, | |
dsn: "============================================YOUR DSN HERE============================================", | |
tracesSampleRate: 1.0, // Capture 100% of the transactions | |
sendDefaultPii: true, // Send default PII data to Sentry | |
integrations: [Sentry.vercelAIIntegration()], | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="test"> | |
<p>Hello</p> | |
</div> |