You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/docs/98-reference/.generated/server-errors.md

26 lines
774 B

<!-- This file is generated by scripts/process-messages/index.js. Do not edit! -->
### async_in_sync
```
Encountered asynchronous work while rendering synchronously.
```
You (or the framework you're using) used `render` with an async component. Either use `renderAsync` or wrap the async component in a `svelte:boundary` with a `pending` snippet.
### lifecycle_function_unavailable
```
`%name%(...)` is not available on the server
```
Certain methods such as `mount` cannot be invoked while running in a server context. Avoid calling them eagerly, i.e. not during render.
### missing_experimental_flag
```
Attempted to use `renderAsync` without `experimental.async` enabled
```
Set `experimental.async: true` in your compiler options to use async server rendering.