# Public Visucio UI assets. On non-Apache hosts, apply equivalent CORS headers.
<IfModule mod_headers.c>
  <FilesMatch "\.(css|js|woff2|woff|ttf|svg|png)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>
<IfModule mod_mime.c>
  AddType font/woff2 .woff2
  AddType image/svg+xml .svg
  AddType text/javascript .js
</IfModule>
