Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions docs/patterns/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ new Elysia({
aot: true
})
```
Disable Ahead of Time compilation

#### Options - @default `false`

- `true` - Precompile every route before starting the server

- `false` - Disable JIT entirely. Faster startup time without cost of performance

## detail

Expand All @@ -79,14 +86,6 @@ new Elysia({
})
```

Disable Ahead of Time compilation

#### Options - @default `false`

- `true` - Precompile every route before starting the server

- `false` - Disable JIT entirely. Faster startup time without cost of performance

## name

Define a name of an instance which is used for debugging and [Plugin Deduplication](/essential/plugin.html#plugin-deduplication)
Expand Down