Skip to content

Commit 51ea988

Browse files
author
Sorita Heng
committed
Add step to include either the API key or License Key based on product source
1 parent c699426 commit 51ea988

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

modules/ROOT/partials/integrations/blazor-postinstall.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,26 @@ Welcome to your new app.
8484
In a Blazor Web App, different render modes determine how components are rendered and how interactivity is handled. To enable JavaScript interactivity, ensure that `+@rendermode InteractiveServer+` is specified in a page component.
8585
+
8686

87+
ifeval::["{productSource}" == "cloud"]
88+
. Update the `+ApiKey+` option in the editor element and include your link:{accountsignup}/[{cloudname} API key].
89+
90+
+
91+
[source,cs]
92+
----
93+
<Editor ApiKey="your-api-key" />
94+
----
95+
+
96+
endif::[]
97+
8798
ifeval::["{productSource}" != "cloud"]
99+
. Update the `+LicenseKey+` option in the editor element and include your and include your xref:license-key.adoc[License Key].
100+
101+
+
102+
[source,cs]
103+
----
104+
<Editor LicenseKey="your-license-key" />
105+
----
106+
+
88107
89108
. To load {productname} from the self-hosted package instead of the {cloudname}, configure the `+ScriptSrc+` property:
90109
+

0 commit comments

Comments
 (0)