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: {
|
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" },
|
||||||
|
|
12
package.json
12
package.json
|
@ -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"
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue