Published
- 1 min read
how to use bulma in gatsby
The solution for this is noted below
how to use bulma in gatsby
Solution
yarn add bulma sass gatsby-plugin-sass
Then, add the gatsby-plugin-sass in to gatsby-config.js.
plugins: [`gatsby-plugin-sass`],
create a custom scss file with the following configs
@charset "utf-8";
@import "~bulma/bulma.sass";
Now lastly import your custom scss file into your index.js file or whichever file you want
Try other methods by searching on the site. That is if this doesn’t work