Hi everyone, I am also trying to install Bulma for a 1.4-dev project.
Here are the steps I followed (thanks to @niccolox ox and @Gazler) :
I added to my dependencies in package.json (left Jquery in devDependencies):
- “animate.css”: “^3.5.2”,
- “bulma”: “^0.6.2”,
- “bulma-extensions”: “^1.0.0”,
I added to my devDependencies in packages.json:
-
“node-sass”: “^4.9.0”,
-
“sass-loader”: “^7.0.1”,
-
Added
node-sassandsass-loadertoassets/package.json -
Renamed
assets/css/app.csstoassets/css/app.scss -
Added the
sass-loaderto thecssfile section inwebpack.config.jsand changing the extension to.scss -
changed
import css from "../css/app.css"toimport css from "../css/app.scss"inassets/js/app.js -
ran
npm iin /myproject/assets (got no error)
but I Bulma isn’t working.
Did I forget something ?






















