Getting Started
Welcome to your new Hugo site powered by Points And Perks Guide!
What’s Next?
This site has been scaffolded with:
- Hugo - A fast and flexible static site generator
- Tailwind CSS v4 - Utility-first CSS framework
- Minimalist Design - Clean, focused layout
Getting Started
Dependencies (Tailwind CSS v4) have been automatically installed for you!
Start the development server:
npm run dev # or bun run dev # or directly hugo server --buildDraftsBuild for production:
npm run build # or bun run build # or directly hugo --minifyCreate new content:
hugo new posts/my-new-post.md
Customization
Your site is configured with:
- Brand: Points And Perks Guide
- Tagline: Your no-nonsense guide to points, perks, and free trips.
- Accent Color: blue
- Font Family: monospace
You can customize these settings in hugo.toml and update the styles in assets/css/main.css.
Troubleshooting
@parcel/watcher Error
If you encounter an error about @parcel/watcher when building your site:
Error: No prebuild or local build of @parcel/watcher found
This happens when optional dependencies aren’t installed. Fix it by running:
npm install --include=optional
# or if using bun
bun install
The @parcel/watcher package is required by Hugo’s TailwindCSS integration for file watching during development.
Learn More
Happy building! 🚀