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

46 lines
711 B
Markdown

# 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.