Skip to content

Commit

Permalink
Allow manifest in CSP
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudloff committed Oct 20, 2020
1 parent 0a220d4 commit e9cee39
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions classes/Middleware/CspMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public function applyHeader(Response $response)
->addDirective('font-src', ['self' => true])
->addDirective('style-src', ['self' => true])
->addDirective('form-action', ['self' => true])
->addDirective('manifest-src', ['self' => true])
->addDirective('base-uri', [])
->addDirective('frame-ancestors', [])
->addSource('img-src', '*');
Expand Down

0 comments on commit e9cee39

Please sign in to comment.