I have the following pack file:
// app/javascript/packs/styles.js
import 'bootstrap/dist/css/bootstrap'
Unless I set extract_css: true in config/webpack.yml I do not see how to get these styles to load.
If I set extract_css: true and include <%= stylesheet_pack_tag 'styles' %> in the layout everything seems to work.
But then what is the point of extract_css: false why would you ever NOT want this? Because its the default webpacker configuration I feel as if I am missing something important.