Add bootstrap to Rails7

การ setup bootstrap สำหรับ Rails 7
เริ่มจากที่สร้าง Project ใหม่ด้วย

rails new app_name --css bootstrap

Verify Bootstratp ( both css + js)

Run Rails ด้วย bin/dev จะเป็นการ complier javascript ด้วย

bin/dev

Add Custom Bootstrap

add asset file css to and javascript
e.g. custom.css to folder

app/assets/stylesheets
edit file manifest.js

//=link custom.css


add custom.css link to application.html.erb

<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>

javascript to folder
image to folder

app/assets/images

Leave a Comment

Your email address will not be published. Required fields are marked *