Getting Started With Next.js
If you’re starting a new Next.js project, you can use the freestyle-next-template to get started quickly.
Development
First, install your dependencies
npm installTo start the dev server run:
npx freestyle devProduction / Deployment
To build your app for production, run:
npx freestyle buildThis will create a .next folder with your built app.
To deploy your app, run:
npx freestyle deploy