# Nuxt Minimal Starter Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. ## Setup Make sure to install dependencies: ```bash # bun bun install ``` ## Development Server Start the development server on `http://localhost:3000`: ```bash # bun bun --bun run dev ``` ## Production Build the application for production: ```bash # bun bunx nuxi build --preset=cloudflare_pages ``` Locally preview production build: ```bash # bun bunx wrangler pages dev dist ``` Deploy to Cloudflare Pages: ```bash # bun bunx wrangler pages deploy dist ``` Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.