site/README.md
Yago Veloso 4cf1829108 Setup project with Nuxt UI and Cloudflare Pages
This commit sets up the project with Nuxt UI for a modern user interface
and configures it for deployment on Cloudflare Pages. It also includes a
basic landing page with the company logo and contact information.
2025-10-20 02:26:17 -03:00

711 B

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# bun
bun --bun run dev

Production

Build the application for production:

# bun
bunx nuxi build --preset=cloudflare_pages

Locally preview production build:

# bun
bunx wrangler pages dev dist

Deploy to Cloudflare Pages:

# bun
bunx wrangler pages deploy dist

Check out the deployment documentation for more information.