使用引擎、nginx、乘客的应用程序中的 Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError

发布于 2025-01-05 08:12:38 字数 555 浏览 0 评论 0原文

我有一个使用引擎的应用程序(由 Gemfile gem my_engine, path=> '../my_engine' 包含)。它与rails 服务器配合得很好。我决定将其与乘客一起移至 nginx,但出现错误。

Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError

auth_engine.css 未预编译

提取的源代码(第 1 行附近):

1: <%= stylesheet_link_tag "auth_engine" %>
2: 
3:
4: <% flash.each do |key, value| %>

auth_engine.css 位于 my_engine/app/assets/stylesheets

如何解决此问题?

I have an application which uses an engine (included by Gemfile gem my_engine, path=> '../my_engine'). It works nice with rails server. I decided to move it to nginx with passenger, but I get an error.

Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError

auth_engine.css isn't precompiled

Extracted source (around line #1):

1: <%= stylesheet_link_tag "auth_engine" %>
2: 
3: <div class="form">
4:   <% flash.each do |key, value| %>

auth_engine.css is located in my_engine/app/assets/stylesheets

How to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻的味道 2025-01-12 08:12:38

看起来您只是单独链接到该样式表,而不是让 Rails 滚动到 application.css 中。在这种情况下,您只需将其移动到 public/assets/stylesheets 文件夹即可使用它,而无需编译它。

It looks like you're just linking to that one stylesheet separately instead of just letting rails roll into application.css. In that case, you should just move it to the public/assets/stylesheets folder to use it without compiling it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文