method

run_css

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: AppBase
run_css() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/generators/app_base.rb, line 462
      def run_css
        return if !options[:css] || !bundle_install?

        if !using_node? && options[:css] == "tailwind"
          rails_command "tailwindcss:install"
        else
          rails_command "css:install:#{options[:css]}"
        end
      end
Register or log in to add new notes.