# Tell Apache what MIME type to use for .wasm files (needed on servers that don't already recognize WebAssembly)
AddType application/wasm wasm

<IfModule mod_headers.c>
	<FilesMatch "\.wasm$">
		# Cache the wasm file (LightningCSS) for 1 year, it's big
		Header set Cache-Control "public, max-age=31536000, immutable"
	</FilesMatch>
</IfModule>
