首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Rails 7.0.1和Tailwind 3,在浏览器中没有显示顺风类

Rails 7.0.1和Tailwind 3,在浏览器中没有显示顺风类
EN

Stack Overflow用户
提问于 2022-01-12 16:54:24
回答 3查看 4.3K关注 0票数 4

我正在尝试用顺风设置rails项目,但是浏览器中没有出现任何实际的顺风变化。在devtools中会显示类,但它不会在浏览器中进行任何更改(背景不是红色)。RoR版本为7.0.1,Tailwindcss为3.0.13,Ruby2.7.2。我在https://www.youtube.com/watch?v=JsNtLiph87Y之后设置了它,下面是我的tailwind.config:

代码语言:javascript
复制
module.exports = {
  content: [
    './app/views/**/*.html.erb',
    './app/helpers/**/*.rb',
    './app/javascript/**/*.js'
  ],
  mode: 'jit',
}

这是我的个人档案:

代码语言:javascript
复制
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "2.7.2"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.1"

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"

# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"

# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails"

# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"

# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"

# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails"

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"

# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"

# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"

# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false

# Use Sass to process CSS
# gem "sassc-rails"

# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

group :development, :test do
  # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  gem "debug", platforms: %i[ mri mingw x64_mingw ]
end

group :development do
  # Use console on exceptions pages [https://github.com/rails/web-console]
  gem "web-console"

  # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
  # gem "rack-mini-profiler"

  # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
  # gem "spring"
end

group :test do
  # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
  gem "capybara"
  gem "selenium-webdriver"
  gem "webdrivers"
end

这是我的application.html.erb

代码语言:javascript
复制
<!DOCTYPE html>
<html>
  <head>
    <title>Nekonomicon</title>
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>

    <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
    <%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>
  </head>

  <body>
    <%= yield %>
  </body>
</html>

这里是主页索引页面(路由是home#index) index.html.erb

代码语言:javascript
复制
<div class="bg-red-500">HELP</div>

帮助显示的是背景,而不是背景。

EN

回答 3

Stack Overflow用户

发布于 2022-01-13 22:59:31

运行rake tailwindcss:build可能会解决这个问题,但是您不希望在HTML类每次更改之后都这样做。

您应该做的是使用bin/dev (而不是rails server)启动您的开发the服务器,它将使用Foreman不仅启动Puma,而且使Tailwind侦听您的CSS中的更改,并(重新)动态构建CSS文件。

票数 14
EN

Stack Overflow用户

发布于 2022-01-28 23:36:12

您必须通过命令重新构建css:

代码语言:javascript
复制
rails tailwindcss:build 

或者尝试使用hotwire-livereload 创业板进行实时重新加载。

票数 4
EN

Stack Overflow用户

发布于 2022-06-19 20:12:51

我也有同样的问题,我唯一需要做的就是运行:

rails tailwindcss:build

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/70685399

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档