I'm having problems because there is no installation file. Can you help me?
Hi
Open Metronic Tailwind HTML folder
/metronic-v9.0.4/metronic-tailwind-html/webpack.config.js
Copy the tailwind.config.js file from the Metronic HTML folder.
Add the following to your Rails file app/javascript/stylesheets/application.scss file:
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
Hi,
Please note that there aren't any installation docs for Rails available at the moment.
In the meantime, are you able to create a new Rails project on your own? You can follow this guide to get started:
https://guides.rubyonrails.org/getting_started.html#creating-a-new-rails-project
Thank you
Hi
At the moment, there are no installation docs for Rails yet. Here’s a general process you can use:
1. Extract the contents of the theme files locally.
2. First, you must set up Tailwind in your Rails app. Follow these steps to create Rails project.
Run the following command in your Rails application folder to install Tailwind:
rails new myapp
cd myapp
rails webpacker:install