How to change server content type to application/wasm?

Hello I have deployed my webgl application in live hosting but it has error.

HTTP Response Header "Content-Type" configured incorrectly on the server for file Build/test1.wasm , should be "application/wasm". Startup time performance will suffer.

Should I change the content type in the index meta tag?

To fix it add the following to the “web.xml” file:

<mime-mapping>
    <extension>wasm</extension>
    <mime-type>application/wasm</mime-type>
</mime-mapping>

You might also need:

<mime-mapping>
    <extension>data</extension>
    <mime-type>application/octet-stream</mime-type>
</mime-mapping>
<mime-mapping>
    <extension>symbols.json</extension>
    <mime-type>application/octet-stream</mime-type>
</mime-mapping>

You can find my thread about it here.