Skip to content

Commit 56be634

Browse files
committed
fix links
1 parent d1c2d13 commit 56be634

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

documentation/docs/01-getting-started/01-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44

55
Welcome to the Svelte reference documentation! This is intended as a resource for people who already have some familiarity with Svelte and want to learn more about using it.
66

7-
If that's not you (yet), you may prefer to visit the [interactive tutorial](https://learn.svelte.dev) or the [examples](/examples) before consulting this reference. You can try Svelte online using the [REPL](/repl). Alternatively, if you'd like a more fully-featured environment, you can try Svelte on [StackBlitz](https://sveltekit.new).
7+
If that's not you (yet), you may prefer to visit the [interactive tutorial](/tutorial) or the [examples](https://svelte.dev/playground) before consulting this reference. You can try Svelte online using the [REPL](https://svelte.dev/playground). Alternatively, if you'd like a more fully-featured environment, you can try Svelte on [StackBlitz](https://sveltekit.new).
88

99
## Start a new project
1010

@@ -21,7 +21,7 @@ SvelteKit will handle calling [the Svelte compiler](https://www.npmjs.com/packag
2121

2222
### Alternatives to SvelteKit
2323

24-
If you don't want to use SvelteKit for some reason, you can also use Svelte with Vite (but without SvelteKit) by running `npm create vite@latest` and selecting the `svelte` option. With this, `npm run build` will generate HTML, JS and CSS files inside the `dist` directory. In most cases, you will probably need to [choose a routing library](/faq#is-there-a-router) as well.
24+
If you don't want to use SvelteKit for some reason, you can also use Svelte with Vite (but without SvelteKit) by running `npm create vite@latest` and selecting the `svelte` option. With this, `npm run build` will generate HTML, JS and CSS files inside the `dist` directory. In most cases, you will probably need to [choose a routing library](https://svelte.dev/docs/svelte/faq#is-there-a-router) as well.
2525

2626
Alternatively, there are [plugins for all the major web bundlers](https://sveltesociety.dev/packages?category=build-plugins) to handle Svelte compilation — which will output `.js` and `.css` that you can insert into your HTML — but most others won't handle SSR.
2727

documentation/docs/03-runtime/06-svelte-easing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: 'svelte/easing'
44

55
Easing functions specify the rate of change over time and are useful when working with Svelte's built-in transitions and animations as well as the tweened and spring utilities. `svelte/easing` contains 31 named exports, a `linear` ease and 3 variants of 10 different easing functions: `in`, `out` and `inOut`.
66

7-
You can explore the various eases using the [ease visualiser](/examples/easing) in the [examples section](/examples).
7+
You can explore the various eases using the [ease visualiser](https://svelte.dev/playground/easing) in the [examples section](https://svelte.dev/playground).
88

99
| ease | in | out | inOut |
1010
| ----------- | ----------- | ------------ | -------------- |

0 commit comments

Comments
 (0)