Skip to content

Commit

Permalink
Merge pull request #8 from NickMous/feature/add-sentry
Browse files Browse the repository at this point in the history
Feature/add sentry
  • Loading branch information
NickMous authored May 25, 2024
2 parents bcffb68 + 4531bd7 commit 15ffd86
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"livewire/livewire": "^3.4.12",
"predis/predis": "^2.2.2",
"ralphjsmit/laravel-seo": "^1.5",
"sentry/sentry-laravel": "^4.5.1",
"sentry/sentry-laravel": "^4.5",
"spatie/laravel-google-fonts": "^1.4.1",
"spatie/laravel-permission": "^6.7",
"spatie/laravel-sitemap": "^7.2"
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"vite": "^5.0"
},
"dependencies": {
"@sentry/browser": "^7.106.1"
"@sentry/browser": "^7.40.0"
}
}
6 changes: 6 additions & 0 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@

<!-- SEO -->
{!! $seo !!}

<!-- Sentry Replay SDK -->
<script
src="https://sentry.nickmous.com/js-sdk-loader/e15ea04fb08981a8e29fafdb4f2378d3.min.js"
crossorigin="anonymous"
></script>
</head>
<body class="font-sans antialiased">
<x-banner />
Expand Down
6 changes: 6 additions & 0 deletions resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@

<!-- SEO -->
{!! $seo !!}

<!-- Sentry Replay SDK -->
<script
src="https://sentry.nickmous.com/js-sdk-loader/e15ea04fb08981a8e29fafdb4f2378d3.min.js"
crossorigin="anonymous"
></script>
</head>
<body class="bg-bg dark:bg-dm-bg transition-colors min-h-screen">
<div class="absolute min-w-full">
Expand Down
6 changes: 6 additions & 0 deletions resources/views/layouts/main.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ class="h-full"

<!-- SEO -->
{!! $seo !!}

<!-- sentry replay sdk -->
<script
src="https://sentry.nickmous.com/js-sdk-loader/e15ea04fb08981a8e29fafdb4f2378d3.min.js"
crossorigin="anonymous"
></script>
</head>
<body class="bg-bg dark:bg-dm-bg transition-colors min-h-screen">
<livewire:navigation-menu/>
Expand Down

0 comments on commit 15ffd86

Please sign in to comment.