Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ The `pnpm.overrides` block in `package.json` pins specific transitive dependenci
| `lodash@<=4.17.23 → >=4.18.0` | [GHSA-r5fr-rjxr-66jc](https://github.com/advisories/GHSA-r5fr-rjxr-66jc), [GHSA-f23m-r3pf-42rh](https://github.com/advisories/GHSA-f23m-r3pf-42rh) — code injection via `_.template`, prototype pollution. |
| `defu@<=6.1.4 → >=6.1.5` | [GHSA-737v-mqg7-c878](https://github.com/advisories/GHSA-737v-mqg7-c878) — prototype pollution via `__proto__` key. |
| `vite@>=7.0.0 <=7.3.1 → >=7.3.2` | [GHSA-v2wj-q39q-566r](https://github.com/advisories/GHSA-v2wj-q39q-566r), [GHSA-p9ff-h696-f583](https://github.com/advisories/GHSA-p9ff-h696-f583), [GHSA-4w7w-66w2-5vf9](https://github.com/advisories/GHSA-4w7w-66w2-5vf9) — `server.fs.deny` bypass, arbitrary file read, path traversal in optimized deps. |
| `unhead@<2.1.13 → >=2.1.13` | [GHSA-95h2-gj7x-gx9w](https://github.com/advisories/GHSA-95h2-gj7x-gx9w) — `hasDangerousProtocol()` bypass. |
| `unhead@<2.1.13 → >=2.1.13 <3` | [GHSA-95h2-gj7x-gx9w](https://github.com/advisories/GHSA-95h2-gj7x-gx9w) — `hasDangerousProtocol()` bypass. Upper bound keeps transitive `unhead` consumers (`@unhead/vue`, `@unhead/schema-org`) on the same v2 instance; without it the override pushes `@unhead/vue`'s `unhead` dep up to v3 while `@unhead/schema-org` stays on v2, splitting the head registry and producing empty JSON-LD on prerender. |
| `simple-git@<3.36.0 → >=3.36.0` | RCE in `simple-git` ≤3.35. |

After bumping a direct dependency, run `pnpm audit` and remove any override that the upstream now resolves on its own.
16 changes: 1 addition & 15 deletions app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ const basePrefix = baseURL.replace(/\/$/, '')
const canonicalUrl = computed(() => {
return new URL(`${basePrefix}${route.path || '/'}`, runtimeConfig.public.siteUrl).toString()
})
const profileImageUrl = new URL(
`${baseURL}profile/fabian-meyer-portrait.jpg`,
runtimeConfig.public.siteUrl
).toString()

useHead({
meta: [
Expand Down Expand Up @@ -51,17 +47,7 @@ useSchemaOrg([
description: 'Personal site of Fabian Meyer — Leader, software engineer and AI mentor at eventim Tech.',
inLanguage: 'en'
}),
defineWebPage(),
definePerson({
name: 'Fabian Meyer',
image: profileImageUrl,
jobTitle: 'Chapter Lead Vue, Software Engineer, AI Mentor',
worksFor: { name: 'eventim Tech GmbH' },
sameAs: [
'https://github.com/dinooo13',
'https://linkedin.com/in/fabian-meyer-02038813a'
]
})
defineWebPage()
])
</script>

Expand Down
12 changes: 12 additions & 0 deletions app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ if (!page.value) {
usePageSeo(page.value)

defineOgImage('NuxtSeoSatori')

const runtimeConfig = useRuntimeConfig()
const identityId = `${runtimeConfig.public.siteUrl.replace(/\/$/, '')}/#identity`

useSchemaOrg([
defineWebPage({
'@type': 'ProfilePage',
'dateCreated': '2026-03-12T19:45:05+01:00',
'dateModified': new Date().toISOString(),
'mainEntity': { '@id': identityId }
})
])
</script>

<template>
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export default defineNuxtConfig({
name: 'Fabian Meyer',
url: process.env.NUXT_PUBLIC_SITE_URL || 'https://fmeyer.dev',
image: '/profile/fabian-meyer-portrait.jpg',
description: 'Chapter Lead Vue, software engineer, and AI mentor at eventim Tech. Leads the Vue chapter, provides technical leadership for the Tixx Online Shop, and helps teams apply agentic engineering with measurable customer impact.',
jobTitle: 'Chapter Lead Vue, Software Engineer, AI Mentor',
worksFor: {
'@type': 'Organization',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"defu@<=6.1.4": ">=6.1.5",
"vite@>=7.0.0 <=7.3.1": ">=7.3.2 <8",
"vite@>=7.1.0 <=7.3.1": ">=7.3.2 <8",
"unhead@<2.1.13": ">=2.1.13",
"unhead@<2.1.13": ">=2.1.13 <3",
"simple-git@<3.36.0": ">=3.36.0",
"nitropack@<2.13.4": ">=2.13.4"
}
Expand Down
Loading