-->

Installing https://github.com/twbs/bootstrap-rubyg

2019-07-21 20:41发布

问题:

How do you install the bootstrap gem (https://github.com/twbs/bootstrap-rubygem) on rails 6?

The bootstrap README asks us to add things to application.js but rails 6 doesn't seem to have an application.js in the usual place.

[ Rails 6.0.0.alpha ] bundle exec rails new noname --edge --database=postgresql --webpacker=react

回答1:

If you use webpacker, you may want to use the npm package of bootstrap

yarn add bootstrap@4.0.0 popper.js

and

# app/javascript/packs/application.js
import 'bootstrap/dist/js/bootstrap';

and inside stylesheets.scss

@import '~bootstrap/scss/bootstrap';

Please look at the complete steps here: https://medium.com/@coorasse/goodbye-sprockets-welcome-webpacker-3-0-ff877fb8fa79