I have pulled in bulma in my project through :
$ npm install bulma
After that, how can I refer to it in my pages. I really don\'t know how to
I had the same issue in Vue and in the end I solved it thanks to this link. For Bulma you just need to run:
$ npm install bulma
After npm install
, your files should be located under node_modules
folder.
For Bulma, check that you have a folder bulma
under node_modules
, then you can import bulma css framework in your main.js file as follows: import "./../node_modules/bulma/css/bulma.css";
Note: even if on the link I provided they suggest the full path to bulma this is not a good practice as @Omkar pointed out, so I ended up importing bulma as follows: import "bulma/css/bulma.css";