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 modules/build-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default defineNuxtModule({
})

declare module '@nuxt/schema' {
interface AppConfig {
interface CustomAppConfig {
Comment thread
ghostdevv marked this conversation as resolved.
env: BuildInfo['env']
buildInfo: BuildInfo
}
Expand Down
2 changes: 1 addition & 1 deletion modules/runtime/server/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ export default defineNitroPlugin(nitroApp => {
nitroApp.hooks.hook('request', event => {
event.context.cachedFetch = async (url: string, options?: any) => {
return {
data: await globalThis.$fetch(url, options),
data: await fetchWrapper(url, options),
Comment thread
ghostdevv marked this conversation as resolved.
isStale: false,
cachedAt: null,
}
Expand Down
Loading
Loading