chore(deps): update dependency nuxt to v4

This commit is contained in:
Renovate
2025-07-16 16:05:26 +00:00
committed by Joakim Olsson
parent db5f9725d4
commit d8e438be10
22 changed files with 1264 additions and 573 deletions
+7
View File
@@ -0,0 +1,7 @@
import { gql as apolloGql } from '@apollo/client/core'
import { markRaw } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function gql(literals: string | readonly string[], ...args: any[]) {
return markRaw(apolloGql(literals, ...args))
}