mirror of https://github.com/mitchell/mjfs-us.git
Add favicon.ico and force Bun in package.json
This commit is contained in:
parent
6b282b89e0
commit
13ff3ea38b
|
@ -7,6 +7,9 @@ export default defineConfig({
|
|||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
siteTitle: "mjfs.us",
|
||||
|
||||
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
|
||||
|
||||
nav: [
|
||||
{ text: "Home", link: "/" },
|
||||
{ text: "Experience", link: "/jobs/mystro" },
|
||||
|
|
12
package.json
12
package.json
|
@ -20,12 +20,12 @@
|
|||
"typescript": "^5.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vitepress dev",
|
||||
"build": "vitepress build",
|
||||
"preview": "vitepress preview",
|
||||
"typecheck": "bunx vue-tsc",
|
||||
"format": "prettier -w .",
|
||||
"lint": "eslint .",
|
||||
"dev": "bunx --bun vitepress dev",
|
||||
"build": "bunx --bun vitepress build",
|
||||
"preview": "bunx --bun vitepress preview",
|
||||
"typecheck": "bunx --bun vue-tsc",
|
||||
"format": "bunx --bun prettier -w .",
|
||||
"lint": "bunx --bun eslint .",
|
||||
"check": "bun run format && bun run lint && bun run typecheck",
|
||||
"clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/",
|
||||
"git:add": "bun run check && git add -p"
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue