fix: thubmnails loading - Talisman default config (#25486)
This commit is contained in:
parent
eb9cd2a2a5
commit
52f631a038
|
|
@ -1423,7 +1423,7 @@ TALISMAN_ENABLED = utils.cast_to_boolean(os.environ.get("TALISMAN_ENABLED", True
|
|||
TALISMAN_CONFIG = {
|
||||
"content_security_policy": {
|
||||
"default-src": ["'self'"],
|
||||
"img-src": ["'self'", "data:"],
|
||||
"img-src": ["'self'", "blob:", "data:"],
|
||||
"worker-src": ["'self'", "blob:"],
|
||||
"connect-src": [
|
||||
"'self'",
|
||||
|
|
@ -1445,7 +1445,7 @@ TALISMAN_CONFIG = {
|
|||
TALISMAN_DEV_CONFIG = {
|
||||
"content_security_policy": {
|
||||
"default-src": ["'self'"],
|
||||
"img-src": ["'self'", "data:"],
|
||||
"img-src": ["'self'", "blob:", "data:"],
|
||||
"worker-src": ["'self'", "blob:"],
|
||||
"connect-src": [
|
||||
"'self'",
|
||||
|
|
|
|||
Loading…
Reference in New Issue