To add Bulma to the application, we need to declare it in the nuxt configuration file by doing the following:
- Open nuxt.config.js, in the client folder.
- Then, update the CSS property and add the Bulma import, to make it available in the global scope of the application:
export default {
/* We need to change only the css property for now, */
/* the rest we will maitain the same */
/*
** Global CSS
*/
css: ['bulma/css/bulma.css'],
}