From 05a4d999c672ada5f320d370adee963f7b59b6e1 Mon Sep 17 00:00:00 2001 From: Rodney Lab Date: Wed, 25 May 2022 08:49:35 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20=F0=9F=93=9A=20add=20Stackblitz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .stackblitzrc | 6 ++++++ README.md | 4 +++- sandbox.config.json | 11 +++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .stackblitzrc create mode 100644 sandbox.config.json diff --git a/.stackblitzrc b/.stackblitzrc new file mode 100644 index 0000000..43798ec --- /dev/null +++ b/.stackblitzrc @@ -0,0 +1,6 @@ +{ + "startCommand": "npm start", + "env": { + "ENABLE_CJS_IMPORTS": true + } +} \ No newline at end of file diff --git a/README.md b/README.md index 01836a6..63d2582 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ # sveltekit-seo -[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/rodneylab/sveltekit-seo) +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/rodneylab/sveltekit-seo) SvelteKit demo code for adding SEO support. The functionality is added principally by three components. Follow links to read more about using them: @@ -43,3 +43,5 @@ npm run build ``` > You can preview the built app with `pnpm run preview`, regardless of whether you installed an adapter. This should _not_ be used to serve your app in production. + +Feel free to jump into the [Rodney Lab matrix chat room](https://matrix.to/#/%23rodney:matrix.org). diff --git a/sandbox.config.json b/sandbox.config.json new file mode 100644 index 0000000..9178af7 --- /dev/null +++ b/sandbox.config.json @@ -0,0 +1,11 @@ +{ + "infiniteLoopProtection": true, + "hardReloadOnChange": false, + "view": "browser", + "template": "node", + "container": { + "port": 3000, + "startScript": "start", + "node": "14" + } +}