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-sass
andsass-loader
toassets/package.json
-
Renamed
assets/css/app.css
toassets/css/app.scss
-
Added the
sass-loader
to thecss
file section inwebpack.config.js
and changing the extension to.scss
-
changed
import css from "../css/app.css"
toimport css from "../css/app.scss"
inassets/js/app.js
-
ran
npm i
in /myproject/assets (got no error)
but I Bulma isn’t working.
Did I forget something ?