You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font\.css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
new:
<IfModule mod_headers.c>
# Allow access from all domains for webfonts (see contao/core-bundle#528)
<FilesMatch "\.(ttf|ttc|otf|eot|woff2?|font\.css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
woff2will be added.
Should be done for Contao 3 and 4
The text was updated successfully, but these errors were encountered:
We have to update the part of mod_headers module
current:
new:
woff2
will be added.Should be done for Contao 3 and 4
The text was updated successfully, but these errors were encountered: