Skip to content

Latest commit

 

History

History
 
 

bulma

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Bulma

npm npm (scoped with tag)

Leverage bulma CSS.

Setup

  • Add @nuxtjs/bulma dependency using yarn or npm to your project
  • Add @nuxtjs/bulma to modules section of nuxt.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
        }
      }
    }
  }