Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.27 KB

README.md

File metadata and controls

53 lines (38 loc) · 1.27 KB

my-blog

Install && Run the App

# Install bun - NOTE: bun is installed globally to the system
curl -fsSL https://bun.sh/install | bash

# Using bun package manager
bun i

#start the dev server
bun run dev

Build

#build your app
bun run build

#preview your app
bun run preview

## With pagefind in package.json
vite build && pagefind

## Without pagefind in package.json
vite build

Vercel Project Settings

  • Open vercel dashboard of your project
  • For project command overrides
    • Settings -> General -> Build & Development Settings
    • Build command: bun run build
    • Output directory: build
    • Install command: bun i
    • Development command: bun run dev
  • For environment variables
  • For custom Ignored Build Step
    • Go to Settings -> Git -> Ignored Build Step -> Project Settings
    • Custom -> if [ "$VERCEL_GIT_COMMIT_REF" == "gh-pages" ]; then exit 0; else exit 1; fi
    • (Alternative) Run my bash script -> bash scripts/vercel_ignored_build_step.s

TODO