Skip to content

Commit f09b38c

Browse files
fix: add favicon.ico redirect route
Amp-Thread-ID: https://ampcode.com/threads/T-019ba7dd-4a3e-7053-971d-d41187f24173 Co-authored-by: Amp <amp@ampcode.com>
1 parent 2bd9f9e commit f09b38c

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CLAUDE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ bv
388388
bd ready # Show issues ready to work (no blockers)
389389
bd list --status=open # All open issues
390390
bd show <id> # Full issue details with dependencies
391-
bd create --title="..." --type=task --priority=2
391+
bd create --title="..." --type=task --priority=2 --id="..." # Creating with id
392392
bd update <id> --status=in_progress
393393
bd close <id> --reason="Completed"
394394
bd close <id1> <id2> # Close multiple issues at once
@@ -433,6 +433,7 @@ git push # Push to remote
433433
- Check `bd ready` at session start to find available work
434434
- Update status as you work (in_progress → closed)
435435
- Create new issues with `bd create` when you discover tasks
436+
- Always ask for --id= param if it's unclear
436437
- Use descriptive titles and set appropriate priority/type
437438
- Always `bd sync` before ending session
438439

app/routes/favicon[.]ico.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { LoaderFunction } from '@remix-run/node'
2+
import { redirect } from '@remix-run/node'
3+
4+
export const loader: LoaderFunction = () => {
5+
return redirect('/rumah-berbagi.jpeg', 301)
6+
}

0 commit comments

Comments
 (0)