Fix cookie secure flag for HTTP testing and add Pinia store
This commit is contained in:
23
.output/server/chunks/build/composables-CK-Mp9jS.mjs
Normal file
23
.output/server/chunks/build/composables-CK-Mp9jS.mjs
Normal file
@@ -0,0 +1,23 @@
|
||||
import { hasInjectionContext, inject } from 'vue';
|
||||
import { b as useNuxtApp } from './server.mjs';
|
||||
import { u as useHead$1, h as headSymbol } from '../routes/renderer.mjs';
|
||||
|
||||
function injectHead(nuxtApp) {
|
||||
const nuxt = nuxtApp || useNuxtApp();
|
||||
return nuxt.ssrContext?.head || nuxt.runWithContext(() => {
|
||||
if (hasInjectionContext()) {
|
||||
const head = inject(headSymbol);
|
||||
if (!head) {
|
||||
throw new Error("[nuxt] [unhead] Missing Unhead instance.");
|
||||
}
|
||||
return head;
|
||||
}
|
||||
});
|
||||
}
|
||||
function useHead(input, options = {}) {
|
||||
const head = options.head || injectHead(options.nuxt);
|
||||
return useHead$1(input, { head, ...options });
|
||||
}
|
||||
|
||||
export { useHead as u };
|
||||
//# sourceMappingURL=composables-CK-Mp9jS.mjs.map
|
||||
Reference in New Issue
Block a user