I can't find any documentation on this, besides npm install slick-carousel
on npm website. I don't have much experience with installing plugins this way, so if anyone could lend me a hand, that be great.
This is what I've gathered so far:
- I install jquery via npm, so that the slick-carousel could run and I install it with
npm install jquery --save
, so that (from what I've gathered) it's included in dependencies in mypackage.json
file. - Then I install slick carousel in the same way, using
npm install slick-carousel --save
But then what? I've seen people saying I need to require/import
some files in my global.js
and style.scss
files too, but I can't seem to figure which ones or how? Nothing I add works.
Can someone please either give me a quick rundown for this or point me in the right direction where to read it because I'm honestly lost?
Thank you!