@appshell/config 1.0.0-alpha.23 → 1.0.0-alpha.25
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 +1 -1
- package/dist/main.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/types.d.ts +18 -11
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ Sample template:
|
|
|
116
116
|
|
|
117
117
|
> Note the variable expansion syntax `${CRA_MFE_URL}`. When `generateManifest` is called the actual runtime environment values are injected and an appshell manifest is emitted.
|
|
118
118
|
|
|
119
|
-
> **Note** the `vars` section defines runtime configuration values a package reads with `getVars()` from [`@appshell/vars`](../
|
|
119
|
+
> **Note** the `vars` section defines runtime configuration values a package reads with `getVars()` from [`@appshell/runtime/vars`](../runtime/README.md) once it is loaded. The package must share `@appshell/runtime` as a singleton to receive them. See the examples for a use case.
|
|
120
120
|
|
|
121
121
|
Sample appshell manifest produced by the `generateManifest` function:
|
|
122
122
|
|