Chrome says “Resource interpreted as script but transferred with MIME type text/plain.”, what gives?

It means that the server is sending a Javascript HTTP response with

Content-Type: text/plain

You need to configure the server to send a JavaScript response with

Content-Type: application/javascript

Leave a Comment