Add favicon.ico and force Bun in package.json

This commit is contained in:
mitchell 2024-06-22 02:17:52 -04:00
parent 6b282b89e0
commit 13ff3ea38b
3 changed files with 9 additions and 6 deletions

View File

@ -7,6 +7,9 @@ export default defineConfig({
themeConfig: { themeConfig: {
// https://vitepress.dev/reference/default-theme-config // https://vitepress.dev/reference/default-theme-config
siteTitle: "mjfs.us", siteTitle: "mjfs.us",
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
nav: [ nav: [
{ text: "Home", link: "/" }, { text: "Home", link: "/" },
{ text: "Experience", link: "/jobs/mystro" }, { text: "Experience", link: "/jobs/mystro" },

View File

@ -20,12 +20,12 @@
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, },
"scripts": { "scripts": {
"dev": "vitepress dev", "dev": "bunx --bun vitepress dev",
"build": "vitepress build", "build": "bunx --bun vitepress build",
"preview": "vitepress preview", "preview": "bunx --bun vitepress preview",
"typecheck": "bunx vue-tsc", "typecheck": "bunx --bun vue-tsc",
"format": "prettier -w .", "format": "bunx --bun prettier -w .",
"lint": "eslint .", "lint": "bunx --bun eslint .",
"check": "bun run format && bun run lint && bun run typecheck", "check": "bun run format && bun run lint && bun run typecheck",
"clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/", "clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/",
"git:add": "bun run check && git add -p" "git:add": "bun run check && git add -p"

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB