Adding multiple scss files in Phoenix app

Can I add multiple .scss files in the phoenix project assets css folder along with app.scss. How to config webpack for compiling this?

Thanks

Yes You can, it’s a simple import in app.css (or scss), like this.

@import "./mystyle";
1 Like