I have this really simple webpack projects in with I now want to also use bulma a css framework.
I installed the package via npm i bulma
and tried to include it inside my app.js
-file using the following snipped unsuccessfully:
import bulma from '~bulma/bulma.sass';
I also tried using a specific sass part, which also did not work:
import bulma from '~bulma/sass/base/_all';
Can you help me get this working or maybe point me in the right direction?