Bootstrap's javascript works locally but not when deployed to a server

前端 未结 9 1461
刺人心
刺人心 2020-12-15 18:56

I downloaded the barebone example of Twitter\'s bootstrap and customized it. I tested it locally (with WAMP server) and everything works perfectly, both the CSS and the JScr

9条回答
  •  庸人自扰
    2020-12-15 19:39

    Back to basics: If Debug is set to true on the local machine and false on the deployment environment as it should be, make sure your .min.js files are not overriding customizations you have made to the non-minified versions of .js files (applies to .css as well).

    You can also turn Debug off on the local machine and you should see the same issues.

提交回复
热议问题