i have a laravel project where i import various CSS and sass package. there are few import methods which are totally different which one is the best practice for import it. detailed information would be appreciated
@import '~bootstrap/sass/bootstrap';what does~syntax do?@import 'variables';@import url('https://fonts.googleapis.com/css?family=Nunito');
can anyone explain between these different?
@import "~@fortawesome/fontawesome-free/scss/fontawesome.scss";
what is the purpose of ~ and @ symbols?