1.3.0 • Published 5 years ago
@nuxtjs/bulma v1.3.0
Bulma
Leverage bulma CSS.
Setup
- Add
@nuxtjs/bulmadependency using yarn or npm to your project - Add
@nuxtjs/bulmatomodulessection 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
}
}
}
}