No description
Find a file
Yago Veloso 854a08783e feat: add custom 404 error page with SVG illustration and user-friendly message
- Implemented a new error.vue component to handle 404 errors.
- Added an SVG illustration for the 404 error page.
- Included a message prompting users to return to the homepage.
- Integrated a button for easy navigation back to the homepage.
2025-11-04 12:31:22 -03:00
app feat: add custom 404 error page with SVG illustration and user-friendly message 2025-11-04 12:31:22 -03:00
public Setup project with Nuxt UI and Cloudflare Pages 2025-10-20 02:26:17 -03:00
.gitignore init 2025-10-20 00:45:13 -03:00
nuxt.config.ts fix: consolidate module declarations and add umami configuration 2025-11-04 12:31:09 -03:00
package.json chore: add pnpm workspace configuration to specify only built dependencies 2025-11-04 12:31:00 -03:00
pnpm-lock.yaml chore: add pnpm workspace configuration to specify only built dependencies 2025-11-04 12:31:00 -03:00
pnpm-workspace.yaml chore: add pnpm workspace configuration to specify only built dependencies 2025-11-04 12:31:00 -03:00
README.md Setup project with Nuxt UI and Cloudflare Pages 2025-10-20 02:26:17 -03:00
tsconfig.json init 2025-10-20 00:45:13 -03:00

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.