@nuxt/app-edge
Advanced tools
Comparing version 0.5.0-27105807.0bbbdde to 0.5.0-27105810.b263b4f
export * from './nuxt'; | ||
export * from './composables'; | ||
export * from '@nuxt/meta'; |
import { App } from 'vue'; | ||
import Hookable from 'hookable'; | ||
import { LegacyContext } from './legacy'; | ||
declare type NuxtMeta = { | ||
htmlAttrs?: string; | ||
headAttrs?: string; | ||
bodyAttrs?: string; | ||
headTags?: string; | ||
bodyPrepend?: string; | ||
bodyScripts?: string; | ||
}; | ||
export interface Nuxt { | ||
@@ -13,3 +21,5 @@ app: App; | ||
_legacyContext?: LegacyContext; | ||
ssrContext?: Record<string, any>; | ||
ssrContext?: Record<string, any> & { | ||
renderMeta: () => Promise<NuxtMeta> | NuxtMeta; | ||
}; | ||
payload: { | ||
@@ -54,1 +64,2 @@ serverRendered?: true; | ||
export declare function useNuxt(): Nuxt; | ||
export {}; |
{ | ||
"name": "@nuxt/app-edge", | ||
"version": "0.5.0-27105807.0bbbdde", | ||
"version": "0.5.0-27105810.b263b4f", | ||
"repository": "nuxt/framework", | ||
@@ -23,3 +23,2 @@ "license": "MIT", | ||
"dependencies": { | ||
"@vueuse/head": "^0.6.0", | ||
"hookable": "^4.4.1", | ||
@@ -32,2 +31,5 @@ "ohmyfetch": "^0.2.0", | ||
}, | ||
"peerDependencies": { | ||
"@nuxt/meta": "*" | ||
}, | ||
"devDependencies": { | ||
@@ -34,0 +36,0 @@ "unbuild": "^0.3.2" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35572
39
765
- Removed@vueuse/head@^0.6.0
- Removed@vueuse/head@0.6.0(transitive)