Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 71ec1df

Browse files
committed
fix(GraphiQL): React-dom resource
1 parent 0ed62d3 commit 71ec1df

File tree

3 files changed

+262
-18
lines changed

3 files changed

+262
-18
lines changed

graphiql-spring-boot-autoconfigure/src/main/java/com/oembedler/moon/graphiql/boot/GraphiQLController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private Map<String, String> getReplacements(String graphqlEndpoint, String subsc
127127
replacements.put("reactJsUrl", getCdnJsUrl(staticBasePath, graphiqlCdnEnabled, REACT,
128128
"16.8.3", "react.production.min.js"));
129129
replacements.put("reactDomJsUrl", getCdnJsUrl(staticBasePath, graphiqlCdnEnabled, REACT_DOM,
130-
"16.8.3", "react-dom-server.browser.production.min.js"));
130+
"16.8.3", "react-dom.production.min.js"));
131131
replacements.put("graphiqlCssUrl", getCdnJsUrl(staticBasePath, graphiqlCdnEnabled, GRAPHIQL,
132132
graphiqlCdnVersion, "graphiql.min.css"));
133133
replacements.put("graphiqlJsUrl", getCdnJsUrl(staticBasePath, graphiqlCdnEnabled, GRAPHIQL,

0 commit comments

Comments
 (0)