Replace external image in About component with local image

This commit is contained in:
Torsten Schulz (local)
2025-10-21 09:56:34 +02:00
parent 98136d5569
commit 8d4e08ad1c
147 changed files with 21319 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
import { hasInjectionContext, inject } from 'vue';
import { t as tryUseNuxtApp } from './server.mjs';
import { u as useHead$1, h as headSymbol } from '../routes/renderer.mjs';
function injectHead(nuxtApp) {
var _a;
const nuxt = nuxtApp || tryUseNuxtApp();
return ((_a = nuxt == null ? void 0 : nuxt.ssrContext) == null ? void 0 : _a.head) || (nuxt == null ? void 0 : nuxt.runWithContext(() => {
if (hasInjectionContext()) {
return inject(headSymbol);
}
}));
}
function useHead(input, options = {}) {
const head = injectHead(options.nuxt);
if (head) {
return useHead$1(input, { head, ...options });
}
}
export { useHead as u };
//# sourceMappingURL=v3-BQ4jllfP.mjs.map