Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 783 Bytes

File metadata and controls

34 lines (23 loc) · 783 Bytes

bun-react-tailwind-shadcn-template

To install dependencies:

bun install

To start a development server:

bun dev

Or choose a custom port:

PORT=3100 bun dev

To run for production:

bun start

Static assets:

  • Put logos, images, and favicons in public/.
  • Access them from the app with root-relative paths like /logo.svg or /images/ziez-logo.png.
  • bun dev serves files from public/ directly, and bun run build copies them into dist/.
  • Favicons are wired from public/favicon_16.ico, public/favicon_32.ico, public/favicon_48.png, public/favicon_180.png, and public/favicon_192.png.

This project was created using bun init in bun v1.3.14. Bun is a fast all-in-one JavaScript runtime.