diff --git a/docs/embeds.md b/docs/embeds.md index 156972b99..e5f8cbea4 100644 --- a/docs/embeds.md +++ b/docs/embeds.md @@ -10,6 +10,8 @@ In addition to standalone apps, you can use Framework to embed interactive views - [exported files](#exported-files) for hotlinking images, data, and other assets, or - [iframe embeds](#iframe-embeds) for compatibility. +You can deploy to Observable Cloud for [additional features](https://observablehq.com/documentation/data-apps/embeds) including secure private embedding on approved domains and analytics to see which exports are used. + ## Exported modules Framework allows [JavaScript modules](./imports#local-imports) to be exported for use in another application. Exported modules are vanilla JavaScript and behave identically in an external web application as on a Framework page. As with local modules, exported modules can load data from a [static file](./files) or a [data loader](./data-loaders), [import](./imports) other local modules, and import libraries from [npm](./imports#npm-imports) or [JSR](./imports#jsr-imports). @@ -75,9 +77,9 @@ document.body.append(await Chart()); ``` -