No description
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. |
||
|---|---|---|
| app | ||
| public | ||
| .gitignore | ||
| bun.lock | ||
| nuxt.config.ts | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
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.