We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbf219 commit 434ce18Copy full SHA for 434ce18
documentation/docs/20-core-concepts/10-routing.md
@@ -12,6 +12,12 @@ At the heart of SvelteKit is a _filesystem-based router_. The routes of your app
12
13
Each route directory contains one or more _route files_, which can be identified by their `+` prefix.
14
15
+We'll introduce these files in a moment in more detail, but here are a few simple rules to help you remember how SvelteKit's routing works:
16
+
17
+* All files can run on the server
18
+* All files run on the client except `+server` files
19
+* `+layout` and `+error` files apply to subdirectories as well as the directory they live in
20
21
## +page
22
23
### +page.svelte
0 commit comments