We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d97fba commit 31183ccCopy full SHA for 31183cc
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Change Log
2
3
+## [0.8.3] - 2019-06-30
4
+### Added
5
+- support for Spatie's `laravel-csp` package.
6
+
7
## [0.8.2] - 2019-06-30
8
### Changed
9
- method of checking registered middleware groups to use `hasMiddlewareGroup()`.
resources/views/script.blade.php
@@ -1,4 +1,8 @@
+@if (function_exists('csp_nonce'))
+<script nonce="{{ csp_nonce() }}">
+@else
<script>
+@endif
var lastCheck = new Date();
var caffeineSendDrip = function () {
var ajax = window.XMLHttpRequest
0 commit comments