I have a Django application, which requires several JavaScript files.
In Chrome I get the error \"Resource interpreted as Script, but transferred with MIME type text
Since this doesn't prevent scripts from being interpreted correctly by the browser, why is this a problem? runserver
is only for development (not production use), and as such is not a full blown web server.
You should continue to use it in development and when you move to production configure your webserver appropriately for static files.
However, if you absolutely must use the development server to serve static files; see how to serve static files.