fix bug/typo in feature_policy
Some checks failed
Build, Push & Deploy / Build & Push image (push) Failing after 1m1s
Build, Push & Deploy / Deploy naar VPS (push) Has been skipped
Build & Push / Build & Push image (push) Successful in 44s

This commit is contained in:
2026-02-28 15:10:14 +01:00
parent 07bcfede75
commit 53975134d7

View File

@@ -101,9 +101,9 @@ def create_app():
x_frame_options='DENY', x_frame_options='DENY',
referrer_policy='strict-origin-when-cross-origin', referrer_policy='strict-origin-when-cross-origin',
feature_policy={ # moderne vervanger van Permissions-Policy feature_policy={ # moderne vervanger van Permissions-Policy
'geolocation': ''none'', 'geolocation': "\'none\'",
'microphone': ''none'', 'microphone': "\'none\'",
'camera': ''none'', 'camera': "\'none\'",
} }
) )