README
Bulma
Leverage bulma CSS.
Setup
- Add
@nuxtjs/bulma
dependency using yarn or npm to your project - Add
@nuxtjs/bulma
tomodules
section ofnuxt.config.js
{
modules: [
'@nuxtjs/bulma'
]
}
- You will need to use postcss loader if you are not already using it.
build: {
/*
** You can extend webpack config here
*/
postcss: {
preset: {
features: {
customProperties: false
}
}
}
}