The staging environment for this is at Staging
You need to install bun on your machine before you start.
curl -fsSL https://bun.sh/install | bash
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# bun
bun install
Start the development server on http://localhost:3000
:
# bun
bun run dev
Build the application for production:
# bun
bun run build
Locally preview production build:
# bun
bun run preview
Check out the deployment documentation for more information.