rails server -e production
但是我在控制台和丑陋的页面中收到这些错误而没有加载CSS:
Resource interpreted as Stylesheet but transferred with MIME type text/HTML: "http://10.20.200.199:3000/".(index):1 Refused to execute script from 'http://10.20.200.199:3000/JavaScripts/application.Js' because its MIME type ('text/HTML') is not executable,and strict MIME type checking is enabled.(index):1 Refused to execute script from 'http://10.20.200.199:3000/logins/plugins.Js?v=1' because its MIME type ('text/HTML') is not executable,and strict MIME type checking is enabled.
这种情况发生在我们正在使用的所有脚本中.
有人可以帮我解决这里可能出错的问题.
提前致谢.
解决方法 对于使用生产环境预运行的组件运行:rake assets:precompile描述的错误表明浏览器请求静态资产;这些都没有构建(它们不是在生产中自动构建的 – 您需要在每次部署时构建它们),因此在其URL上找不到任何内容,而是呈现错误页面.因此浏览器错误说下载的CSS和JavaScript文件具有wront MIME类型.
总结以上是内存溢出为你收集整理的ruby-on-rails – 在本地生产模式下运行导轨全部内容,希望文章能够帮你解决ruby-on-rails – 在本地生产模式下运行导轨所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)