For installing bootstrap-sass gem do I remove *= require_self from application.scss or replace it with import '@require_self'

Viewed 1240

I'm installing the bootstrap-sass gem and this line to do with application.scss confuses me.

'Then, remove all the *= require_self and *= require_tree . statements from the sass file. Instead, use @import to import Sass files.'

Do I remove *= require_self and *= require_tree . and replace them with import '@require_self' and import '@require_tree .' or just remove them.

Also for any other imported files inside application.scss like

 *= require dataTables/jquery.dataTables
 *= require froala/froala_editor.min.css

should I change them to

 @import 'dataTables/jquery.dataTables'
 @import 'froala/froala_editor.min.css'

Just confused and would like a confirmation on what to do here.

2 Answers
Related