I need to set Content Security Policy in config.neon
file.
The policy for images should look something like this (very stripped down version) img-src data:
The server runs PHP/Nette framework, configuration is in .neon files.
The string data:
produces syntax error on server-side, because :
has special meaning in .neon.
Nette\Neon\Exception
Unexpected ':' on line 28, column 343.
How to overcome this? How can I send "data:" in header?