diff --git a/docs/extensions/realtime-compiler.md b/docs/extensions/realtime-compiler.md index aade28831cf..8bbe2823400 100644 --- a/docs/extensions/realtime-compiler.md +++ b/docs/extensions/realtime-compiler.md @@ -50,18 +50,6 @@ The server can be configured in the `config/hyde.php` file to change the port, h // Should the live edit feature be enabled? 'live_edit' => env('SERVER_LIVE_EDIT', true), - - // Configure the realtime compiler dashboard - 'dashboard' => [ - // Should the realtime compiler dashboard be enabled? - 'enabled' => env('SERVER_DASHBOARD', true), - - // Can the dashboard make edits to the project file system? - 'interactive' => true, - - // Should the dashboard show tips? - 'tips' => true, - ], ], ``` @@ -83,9 +71,15 @@ The dashboard can be customized, and disabled, in the `config/hyde.php` file. // filepath config/hyde.php 'server' => [ + // Configure the realtime compiler dashboard 'dashboard' => [ + // Should the realtime compiler dashboard be enabled? 'enabled' => env('SERVER_DASHBOARD', true), + + // Can the dashboard make edits to the project file system? 'interactive' => true, + + // Should the dashboard show tips? 'tips' => true, ], ], @@ -122,8 +116,6 @@ The live editor plugin code will not be saved to your static site. ], ``` -_The live editor was added in Hyde Realtime Compiler Server v3.2.0 (December 2023)_ - ### Source code - **GitHub**: [hydephp/realtime-compiler](https://github.com/hydephp/realtime-compiler)