Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RAV] Add missing property to config #785

Merged
merged 1 commit into from
Aug 17, 2021
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
6 changes: 6 additions & 0 deletions samples/angular/sitecore/config/JssAngularWeb.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@
Defaults are defined in `/App_Config/Sitecore/JavaScriptServices/Sitecore.JavaScriptServices.Apps.config`

NOTE: graphQLEndpoint enables _Integrated GraphQL_. If not using integrated GraphQL, it can be removed.

NOTE: layoutServiceConfiguration should be set to "default" when using GraphQL Edge schema.
When using integrated GraphQL with Edge schema, a $language value is injected
since language is required in all Edge queries. "jss" configuration does not do this (which is backwards
compatible with JSS versions < 18.0.0).
-->
<app name="JssAngularWeb"
layoutServiceConfiguration="default"
sitecorePath="/sitecore/content/JssAngularWeb"
inherits="defaults"
useLanguageSpecificLayout="true"
Expand Down
6 changes: 6 additions & 0 deletions samples/react/sitecore/config/JssReactWeb.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@
Defaults are defined in `/App_Config/Sitecore/JavaScriptServices/Sitecore.JavaScriptServices.Apps.config`

NOTE: graphQLEndpoint enables _Integrated GraphQL_. If not using integrated GraphQL, it can be removed.

NOTE: layoutServiceConfiguration should be set to "default" when using GraphQL Edge schema.
When using integrated GraphQL with Edge schema, a $language value is injected
since language is required in all Edge queries. "jss" configuration does not do this (which is backwards
compatible with JSS versions < 18.0.0).
-->
<app name="JssReactWeb"
layoutServiceConfiguration="default"
sitecorePath="/sitecore/content/JssReactWeb"
useLanguageSpecificLayout="true"
graphQLEndpoint="/sitecore/api/graph/edge"
Expand Down
6 changes: 6 additions & 0 deletions samples/vue/sitecore/config/JssVueWeb.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@
Defaults are defined in `/App_Config/Sitecore/JavaScriptServices/Sitecore.JavaScriptServices.Apps.config`

NOTE: graphQLEndpoint enables _Integrated GraphQL_. If not using integrated GraphQL, it can be removed.

NOTE: layoutServiceConfiguration should be set to "default" when using GraphQL Edge schema.
When using integrated GraphQL with Edge schema, a $language value is injected
since language is required in all Edge queries. "jss" configuration does not do this (which is backwards
compatible with JSS versions < 18.0.0).
-->
<app name="JssVueWeb"
layoutServiceConfiguration="default"
sitecorePath="/sitecore/content/JssVueWeb"
useLanguageSpecificLayout="true"
graphQLEndpoint="/sitecore/api/graph/edge"
Expand Down