A small example of how someone could use Next.js with Bulma.
In order to use Bulma, I was able to use @zeit/next-sass
to import Bulma's sass sheet directly from node_modules
.
To run a development build using hot reloading, use:
npm run dev
To build and start a production version of the code, run:
npm run build
npm run start
To deploy using now
, first make sure you have it installed and that you're logged in, then you can deploy:
npm i -g now
now login
now