I'm on a Symfony 4 new project.
Via yarn, I installed (by example) the CSS library animate.css
yarn install animate.css
From the webpack.config.js file, I added the animate.css file like that :
.addStyleEntry('animate', './node_modules/animate.css/animate.css')
My question is : is it a good way to add a CSS library like that ? I'm not sure if use directly the node_module path is a good practice..
Is there a better way ?