@nuxtjs/bulmadeprecated

[![npm](https://img.shields.io/npm/dt/@nuxtjs/bulma.svg?style=flat-square)](https://npmjs.com/package/@nuxtjs/bulma) [![npm (scoped with tag)](https://img.shields.io/npm/v/@nuxtjs/bulma/latest.svg?style=flat-square)](https://npmjs.com/package/@nuxtjs/bulm

Usage no npm install needed!

<script type="module">
  import nuxtjsBulma from 'https://cdn.skypack.dev/@nuxtjs/bulma';
</script>

README

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
        }
      }
    }
  }