sprint-es 0.0.87 → 0.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -190,7 +190,7 @@ class Sprint {
|
|
|
190
190
|
path: finalConfig.graphql?.path || "/graphql",
|
|
191
191
|
graphiql: {
|
|
192
192
|
enabled: isEnabledInEnv(finalConfig.graphql?.graphiql?.enabled),
|
|
193
|
-
path: finalConfig.graphql?.graphiql?.path || "/
|
|
193
|
+
path: finalConfig.graphql?.graphiql?.path || "/graphiql"
|
|
194
194
|
}
|
|
195
195
|
};
|
|
196
196
|
const openApiPath = this.openapi.path;
|
package/dist/esm/index.js
CHANGED
|
@@ -165,7 +165,7 @@ class Sprint {
|
|
|
165
165
|
path: finalConfig.graphql?.path || "/graphql",
|
|
166
166
|
graphiql: {
|
|
167
167
|
enabled: isEnabledInEnv(finalConfig.graphql?.graphiql?.enabled),
|
|
168
|
-
path: finalConfig.graphql?.graphiql?.path || "/
|
|
168
|
+
path: finalConfig.graphql?.graphiql?.path || "/graphiql"
|
|
169
169
|
}
|
|
170
170
|
};
|
|
171
171
|
const openApiPath = this.openapi.path;
|