Magento – Magento 2 CSS and Javascipt Not Loading

js-cssmagento-2.1

I am running magento 2.1.5 and every thing was working fine. Suddenly my CSS and Js files are not loading I am getting error

 http://mymagentourl.com/pub/static/version1491202457/frontend/Magento/luma/en_US/css/styles-m.css” was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).

what is the meaning of was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).

I am running magento in nginx Web Server and my mode is production. I tried

  • remove Var/* folder
  • re deploy static content
  • remove cache
  • flush
    cache

I am not able to understand why my css and js is not loading?

Best Answer

Navigate to your database and perform following steps:-

  • Find core_config_data table and open it.
  • Add a new row and provide "dev/static/sign" under path and "0" under value (without quotes) and leave other fields unchanged and save it.
  • flush cache php bin/magento cache:flush
  • perform static content deploy php bin/magento setup:static-content:deploy
Related Topic