在本地生产模式下运行rails

时间:2016-02-23 12:16:48

标签: ruby-on-rails production-environment

我正在尝试使用以下命令在生产模式下运行rails(不太了解它):

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.

我们正在使用的所有脚本都会发生这种情况。

有人可以帮我解决这里可能出现的问题。

提前致谢。

1 个答案:

答案 0 :(得分:4)

对于使用生产环境预运行的组件运行:rake assets:precompile

描述的错误表明浏览器请求静态资产;这些都没有构建(它们不是在生产中自动构建的 - 您需要在每次部署时构建它们),因此在其URL上找不到任何内容,而是呈现错误页面。因此,浏览器错误说下载的css和javascript文件具有非MIME类型。