I intend loading bulma sass files from node modules into my components on nuxtjs but I am not getting any lead way. After installing both node-sass and sass-loader (coupled with the several hours I have spent trying to set them up on nuxt.config.js with zero success) I have really hit a dead end here guys, please help me.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (5)
Is this a fresh project you are just getting started on?
If it is, I would recommend just using create-nuxt-app, which can bundle bulma for you out of the box.
If you already have some work done, then the next step would be to include
bulma
in thenuxt.config.js
as you mentioned. To do that, take a look at their docs on css configuration here: nuxtjs.org/api/configuration-cssIf this still isn't working, something might be off with your configuration of nuxt itself.
Wow, several hours of neck pain and headaches which would have been avoided if i had just done this
Instead of
Thanks a lot, Nathan. You are a life saver.
Glad I could help!
Could you post your nuxt.config.js file? Just to get a better idea of what you've done so far.
Thanks Lynne. The problem has been solved with help from Nathan Bland