Skip to content

Commit b21e7b9

Browse files
committed
update Sapper links to point to sapper-legacy
1 parent 978a979 commit b21e7b9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

content/blog/2017-12-31-sapper-towards-the-ideal-web-app-framework.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: Rich Harris
66
authorURL: https://twitter.com/Rich_Harris
77
---
88

9-
> Quickstart for the impatient: [the Sapper docs](https://sapper.svelte.technology), and the [starter template](https://github.com/sveltejs/sapper-template)
9+
> Quickstart for the impatient: [the Sapper docs](https://sapper-legacy.svelte.dev), and the [starter template](https://github.com/sveltejs/sapper-template)
1010
1111
If you had to list the characteristics of the perfect Node.js web application framework, you'd probably come up with something like this:
1212

@@ -48,9 +48,9 @@ What happens if we use the new model as a starting point?
4848

4949
## Introducing Sapper
5050

51-
<aside>The [name comes from](https://sapper.svelte.technology/guide#why-the-name-) the term for combat engineers, and is also short for <strong>S</strong>velte <strong>app</strong> mak<strong>er</strong></aside>
51+
<aside>The [name comes from](https://sapper-legacy.svelte.dev/guide#why-the-name-) the term for combat engineers, and is also short for <strong>S</strong>velte <strong>app</strong> mak<strong>er</strong></aside>
5252

53-
[Sapper](https://sapper.svelte.technology) is the answer to that question. **Sapper is a Next.js-style framework that aims to meet the eleven criteria at the top of this article while dramatically reducing the amount of code that gets sent to the browser.** It's implemented as Express-compatible middleware, meaning it's easy to understand and customise.
53+
[Sapper](https://sapper-legacy.svelte.dev) is the answer to that question. **Sapper is a Next.js-style framework that aims to meet the eleven criteria at the top of this article while dramatically reducing the amount of code that gets sent to the browser.** It's implemented as Express-compatible middleware, meaning it's easy to understand and customise.
5454

5555
The same 'hello world' app that took 204kb with React and Next weighs just 7kb with Sapper. That number is likely to fall further in the future as we explore the space of optimisation possibilities, such as not shipping any JavaScript *at all* for pages that aren't interactive, beyond the tiny Sapper runtime that handles client-side routing.
5656

content/blog/2018-04-18-version-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ There are a few other updates. But you don't need to make them manually — just
5656
npx svelte-upgrade v2 src
5757
```
5858

59-
This assumes any `.html` files in `src` are Svelte components. You can specify whichever directory you like, or target a different directory — for example, you'd do `npx svelte-upgrade v2 routes` to update a [Sapper](https://sapper.svelte.technology) app.
59+
This assumes any `.html` files in `src` are Svelte components. You can specify whichever directory you like, or target a different directory — for example, you'd do `npx svelte-upgrade v2 routes` to update a [Sapper](https://sapper-legacy.svelte.dev) app.
6060

6161
To see the full set of changes, consult the [svelte-upgrade README](https://github.com/sveltejs/svelte-upgrade#svelte-v2-syntax-changes).
6262

content/guide/06-special-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ The `<svelte:document>` tag, just like `<svelte:window>`, gives you a convenient
174174

175175
### `<svelte:head>`
176176

177-
If you're building an application with Svelte — particularly if you're using [Sapper](https://sapper.svelte.technology) — then it's likely you'll need to add some content to the `<head>` of your page, such as adding a `<title>` element.
177+
If you're building an application with Svelte — particularly if you're using [Sapper](https://sapper-legacy.svelte.dev) — then it's likely you'll need to add some content to the `<head>` of your page, such as adding a `<title>` element.
178178

179179
You can do that with the `<svelte:head>` tag:
180180

content/guide/09-static-properties.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ In some situations, you might want to add static properties to your component co
3232

3333
### preload
3434

35-
If your component definition includes a `preload` function, it will be attached to the component constructor as a static method. It doesn't change the behaviour of your component in any way — instead, it's a convention that allows systems like [Sapper](https://sapper.svelte.technology) to delay rendering of a component until its data is ready.
35+
If your component definition includes a `preload` function, it will be attached to the component constructor as a static method. It doesn't change the behaviour of your component in any way — instead, it's a convention that allows systems like [Sapper](https://sapper-legacy.svelte.dev) to delay rendering of a component until its data is ready.
3636

37-
See the section on [preloading](https://sapper.svelte.technology/guide#preloading) in the Sapper docs for more information.
37+
See the section on [preloading](https://sapper-legacy.svelte.dev/guide#preloading) in the Sapper docs for more information.

src/components/Nav.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<li><a rel='prefetch' class='{segment === "guide" ? "active": ""}' href='guide'>Guide</a></li>
1111
<li><a rel='prefetch' class='{segment === "repl" ? "active": ""}' href='repl'>REPL</a></li>
1212
<li><a rel='prefetch' class='{segment === "blog" ? "active": ""}' href='blog'>Blog</a></li>
13-
<li><a href='https://sapper.svelte.technology'>Sapper</a></li>
13+
<li><a href='https://sapper-legacy.svelte.dev'>Sapper</a></li>
1414
<li><a href='https://discord.gg/yy75DKs'>Chat</a></li>
1515
<li><a href='https://github.com/sveltejs/svelte'>GitHub</a></li>
1616
</ul>

0 commit comments

Comments
 (0)