DEV Community

Christopher Makombe
Christopher Makombe

Posted on

How to add Bulma Into Your Nextjs Web App

First of all create the application using npm or yarn

npx create-next-app
yarn create-next-app
Enter fullscreen mode Exit fullscreen mode

Second Thing is To READ the documentation of Bulma.io

Install Bulma into your app

npm install bulma
Enter fullscreen mode Exit fullscreen mode

Just like how you import the bootstrap package in your _app.jsx .Do That with Bulma

import "bulma/css/bulma.css";

Enter fullscreen mode Exit fullscreen mode

Top comments (0)