No description
- 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. |
||
|---|---|---|
| app | ||
| public | ||
| .gitignore | ||
| nuxt.config.ts | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| 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.