diff --git a/wp-content/themes/ccat/nuxt.config.ts b/wp-content/themes/ccat/nuxt.config.ts index f96b70a..751b126 100644 --- a/wp-content/themes/ccat/nuxt.config.ts +++ b/wp-content/themes/ccat/nuxt.config.ts @@ -24,7 +24,7 @@ export default defineNuxtConfig({ css: ["~/assets/css/main.css"], site: { - indexable: true, + indexable: false, url: "https://cultureat.ca", name: "Conseil de la culture de l'Abitibi-Témiscamingue", }, @@ -45,7 +45,9 @@ export default defineNuxtConfig({ preset: "cloudflare_module", }, - hub: {}, + hub: { + workers: true, + }, eslint: { config: { diff --git a/wp-content/themes/ccat/server/graphql/schema.graphql b/wp-content/themes/ccat/server/graphql/schema.graphql index f926d60..069b653 100644 --- a/wp-content/themes/ccat/server/graphql/schema.graphql +++ b/wp-content/themes/ccat/server/graphql/schema.graphql @@ -8708,7 +8708,7 @@ type MediaSize { } """The Membership type""" -type Membership implements ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfPostMembership { +type Membership implements ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & UniformResourceIdentifiable & WithAcfPostMembership { """The ancestors of the content node.""" ancestors( """ @@ -8880,7 +8880,7 @@ type Membership implements ContentNode & DatabaseIdentifier & Node & NodeWithAut postMembership: PostMembership """Connection between the Membership type and the Membership type""" - preview: MembershipToPreviewConnectionEdge + preview: MembershipToPreviewConnectionEdge @deprecated(reason: "The "Membership" Type is not publicly queryable and does not support previews. This field will be removed in the future.") """The database id of the preview node""" previewRevisionDatabaseId: Int @@ -9060,7 +9060,7 @@ type MembershipToPreviewConnectionEdge implements Edge & MembershipConnectionEdg cursor: String """The node of the connection, without the edges""" - node: Membership! + node: Membership! @deprecated(reason: "The "Membership" Type is not publicly queryable and does not support previews. This field will be removed in the future.") } """Connection between the Membership type and the Membership type"""