Skip to content

Commit

Permalink
add unsafe inline for style
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwalo32 committed Jan 4, 2025
1 parent 2177f57 commit f6598fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/middleware/responses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const configureHelment = () =>
'img-src': [...SRC_SELF, ...SRC_S3, ...SRC_GOOGLE_MAPS],
'frame-src': [...SRC_SELF, '*.google.com'],
'font-src': [...SRC_SELF, 'https://fonts.gstatic.com'],
'style-src': [...SRC_SELF, 'https://fonts.googleapis.com'],
'style-src': [...SRC_SELF, 'https://fonts.googleapis.com', 'unsafe-inline'],
'media-src': [...SRC_SELF, ...SRC_S3],
'object-src': [...SRC_SELF],
'worker-src': [...SRC_SELF],
Expand Down

0 comments on commit f6598fb

Please sign in to comment.