From e0d6699435518f63efb44db6bd31fae0171d2dff Mon Sep 17 00:00:00 2001 From: Scott Date: Tue, 27 Nov 2018 15:28:31 +0100 Subject: [PATCH] Update meta-plugin.md Added an example for a javascript file from a cdn. Scott --- source/components/meta-plugin.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/components/meta-plugin.md b/source/components/meta-plugin.md index 5cb5aad7..2a2a99c7 100644 --- a/source/components/meta-plugin.md +++ b/source/components/meta-plugin.md @@ -42,6 +42,11 @@ export default { ldJson: { type: 'application/ld+json', innerHTML: `{ "@context": "http://schema.org" }` + }, + // or for a js script stored on a cdn + someCDNScript: { + type: 'text/javascript', + src: 'http://some-cdn.url' } },