@epigraph/configurator 1.8.3-alpha → 1.9.0
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/README.md +2 -2
- package/dist/index.js +804 -1475
- package/package.json +27 -26
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ In order to import the web component on your page, you must import the the scrip
|
|
|
33
33
|
```html
|
|
34
34
|
<head>
|
|
35
35
|
<!-- Import other scripts above and below this. -->
|
|
36
|
-
<script src="https://cdn.jsdelivr.net/npm/@epigraph/configurator"></script>
|
|
36
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@epigraph/configurator"></script>
|
|
37
37
|
</head>
|
|
38
38
|
```
|
|
39
39
|
|
|
@@ -72,7 +72,7 @@ Epigraph API exposes it's core's API on the HTML element itself and the uses the
|
|
|
72
72
|
```html
|
|
73
73
|
<head>
|
|
74
74
|
<!-- Import other scripts above and below this. -->
|
|
75
|
-
<script src="https://cdn.jsdelivr.net/npm/@epigraph/configurator"></script>
|
|
75
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@epigraph/configurator"></script>
|
|
76
76
|
</head>
|
|
77
77
|
|
|
78
78
|
<!-- A client-access-key can only be linked to a single domain, so if you would like to whitelist your staging URL as well, please request a separate key for the same. -->
|