pull/13992/head
Rich Harris 2 years ago
parent 600f771dd9
commit 8d810fa24b

@ -65,11 +65,11 @@
},
{
title: 'examples',
href: '/examples'
href: 'https://svelte.dev/playground'
},
{
title: 'blog',
href: '/blog'
href: 'https://svelte.dev/blog'
}
],
connect: [

@ -12,7 +12,7 @@
id: 'nested-components',
title: 'Scoped CSS',
description:
'CSS is component-scoped by default — no more style collisions or specificity wars. Or you can <a href="/blog/svelte-css-in-js">use your favourite CSS-in-JS library</a >.'
'CSS is component-scoped by default — no more style collisions or specificity wars. Or you can <a href="https://svelte.dev/blog/svelte-css-in-js">use your favourite CSS-in-JS library</a >.'
},
{
id: 'reactive-assignments',
@ -49,7 +49,7 @@
{/each}
</div>
<a href="/examples">more <span class="large-show">&nbsp;examples</span> &rarr;</a>
<a href="https://svelte.dev/playground">more <span class="large-show">&nbsp;examples</span> &rarr;</a>
</div>
{#if selected}

@ -11,7 +11,7 @@
$: {
if (repl) {
fetch(`/examples/api/${id}.json`)
fetch(`https://svelte.dev/playground/api/${id}.json`)
.then((r) => r.json())
.then((data) => process_example(data.files))
.then((files) => {

Loading…
Cancel
Save