Skip to content

Commit

Permalink
Update sentry url
Browse files Browse the repository at this point in the history
  • Loading branch information
carsso committed Sep 16, 2023
1 parent 28423fa commit 230f7fc
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,25 @@ class="{{ Cookie::get('darkmode') ? 'dark' : 'light' }}">

@if (config('sentry.dsn'))
<script
src="{{ config('app.sentry_cdn') }}/7.24.2/bundle.tracing.min.js"
integrity="sha384-Nb9Pkx/WZV5kujSYUYEjIqArDFhw1LX9tsEjSylkWLAvjP4kgIQZ47O98EQfeUwX"
src="{{ config('app.sentry_cdn') }}/7.69.0/bundle.tracing.replay.min.js"
integrity="sha384-6ZlY7nOHgnD0vXeSWEgeSHy/+WXQkLYa52vA7d20SFsyRhhCU9mGOIGSgNlbzdSS"
crossorigin="anonymous"></script>

<script>
Sentry.init({
dsn: "{{ config('sentry.dsn') }}",
tunnel: "/sentry",
integrations: [new Sentry.BrowserTracing()],
integrations: [
new Sentry.BrowserTracing(),
new Sentry.Replay({
maskAllText: false,
maskAllInputs: false,
blockAllMedia: false,
})
],
tracesSampleRate: 1.0,
replaysSessionSampleRate: 1.0,
replaysOnErrorSampleRate: 1.0,
});
@if (auth()->check())
Expand Down

0 comments on commit 230f7fc

Please sign in to comment.