Skip to content

Commit

Permalink
Merge pull request #1395 from hydephp/realtime-compiler-dashboard-imp…
Browse files Browse the repository at this point in the history
…rovements

Update realtime compiler dashboard configuration schema hydephp/develop@b563dc6
  • Loading branch information
github-actions committed Oct 27, 2023
1 parent 0cbdbeb commit 0ef384c
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions config/hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@
|--------------------------------------------------------------------------
|
| Here you can configure settings for the built-in realtime compiler server.
| The server also includes a magic dashboard feature that supercharges
| your local development! This feature can alo be customised here.
|
*/

Expand All @@ -412,14 +414,17 @@
// Should preview pages be saved to the output directory?
'save_preview' => true,

// Should the realtime compiler dashboard be enabled?
'dashboard' => env('SERVER_DASHBOARD', 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?
'dashboard_editor' => true,
// Can the dashboard make edits to the project file system?
'interactive' => true,

// Should the dashboard show tips?
'dashboard_tips' => true,
// Should the dashboard show tips?
'tips' => true,
],

],

Expand Down

0 comments on commit 0ef384c

Please sign in to comment.