Skip to content

Commit 8d810fa

Browse files
committed
fix links
1 parent 600f771 commit 8d810fa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

sites/svelte.dev/src/routes/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
},
6666
{
6767
title: 'examples',
68-
href: '/examples'
68+
href: 'https://svelte.dev/playground'
6969
},
7070
{
7171
title: 'blog',
72-
href: '/blog'
72+
href: 'https://svelte.dev/blog'
7373
}
7474
],
7575
connect: [

sites/svelte.dev/src/routes/_components/Demo.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
id: 'nested-components',
1313
title: 'Scoped CSS',
1414
description:
15-
'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 >.'
15+
'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 >.'
1616
},
1717
{
1818
id: 'reactive-assignments',
@@ -49,7 +49,7 @@
4949
{/each}
5050
</div>
5151

52-
<a href="/examples">more <span class="large-show">&nbsp;examples</span> &rarr;</a>
52+
<a href="https://svelte.dev/playground">more <span class="large-show">&nbsp;examples</span> &rarr;</a>
5353
</div>
5454

5555
{#if selected}

sites/svelte.dev/src/routes/_components/Example.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
$: {
1313
if (repl) {
14-
fetch(`/examples/api/${id}.json`)
14+
fetch(`https://svelte.dev/playground/api/${id}.json`)
1515
.then((r) => r.json())
1616
.then((data) => process_example(data.files))
1717
.then((files) => {

0 commit comments

Comments
 (0)