Skip to content

Commit

Permalink
Fix font-src for stage hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
janbrasna committed Apr 16, 2024
1 parent 75d3291 commit cade129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bedrock/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@

CSP_SCRIPT_SRC = CSP_DEFAULT_SRC + _csp_script_src
CSP_STYLE_SRC = CSP_DEFAULT_SRC + _csp_style_src
CSP_FONT_SRC = CSP_DEFAULT_SRC + _csp_font_src
CSP_CHILD_SRC = CSP_DEFAULT_SRC + _csp_child_src
CSP_CONNECT_SRC = CSP_DEFAULT_SRC + _csp_connect_src

Expand All @@ -264,7 +265,6 @@

# support older browsers (mainly Safari)
CSP_FRAME_SRC = CSP_CHILD_SRC
CSP_FONT_SRC = _csp_font_src

# 4. SETTINGS WHICH APPLY REGARDLESS OF SITE MODE
if DEV:
Expand Down

0 comments on commit cade129

Please sign in to comment.