Skip to content

Commit fc26d22

Browse files
committed
chore(web): change favicon
1 parent b33d985 commit fc26d22

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/site_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
- name: Install dependencies
4141
run: bun install
4242

43-
- name: Run ESLint
44-
run: bun run build
43+
- name: Build Site
44+
run: bun run web:build

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
"test:jetstream": "bun --watch src/utils/bluesky/jetstream.ts",
2626
"lint": "eslint . --ext .ts -c .eslintrc.json",
2727
"lint:fix": "eslint . --ext .ts -c .eslintrc.json --fix",
28-
"cargo:api:dev": "cd api && cargo watch -x \"run -- --dev\""
28+
"cargo:api:dev": "cd api && cargo watch -x \"run -- --dev\"",
29+
"web:dev": "cd web && bun dev",
30+
"web:build": "cd web && bun build"
2931
},
3032
"dependencies": {
3133
"cron": "^4.3.0",

web/public/feedr.png

79.5 KB
Loading

web/src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const { title } = Astro.props;
1818
<head>
1919
<meta charset="UTF-8" />
2020
<meta name="viewport" content="width=device-width" />
21-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
21+
<link rel="icon" type="image/png" href="/feedr.png" />
2222
<meta name="generator" content={Astro.generator} />
2323
<meta
2424
name="description"

0 commit comments

Comments
 (0)