diff --git a/app/routes/query.$version.docs.framework.$framework.examples.$.tsx b/app/routes/query.$version.docs.framework.$framework.examples.$.tsx index 4acd9236..0a22c566 100644 --- a/app/routes/query.$version.docs.framework.$framework.examples.$.tsx +++ b/app/routes/query.$version.docs.framework.$framework.examples.$.tsx @@ -38,9 +38,11 @@ export default function RouteExamples() { }, []) const githubUrl = `https://github.com/${repo}/tree/${branch}/examples/${examplePath}` + // preset=node can be removed once Stackblitz runs Angular as webcontainer by default + // https://github.com/stackblitz/core/issues/2957 const stackBlitzUrl = `https://stackblitz.com/github/${repo}/tree/${branch}/examples/${examplePath}?embed=1&theme=${ isDark ? 'dark' : 'light' - }` + }&preset=node` const codesandboxUrl = `https://codesandbox.io/s/github/${repo}/tree/${branch}/examples/${examplePath}?embed=1&theme=${ isDark ? 'dark' : 'light' }`