diff --git a/docs/patterns/configuration.md b/docs/patterns/configuration.md index 347882fb..42dabfbf 100644 --- a/docs/patterns/configuration.md +++ b/docs/patterns/configuration.md @@ -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 @@ -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)