Skip to content

Commit

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

Interactive realtime compiler dashboard feature hydephp/develop@5cc10c7
  • Loading branch information
github-actions committed Oct 26, 2023
1 parent 01778db commit 0cbdbeb
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion config/hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,10 +403,24 @@
*/

'server' => [
// The default port the preview is served on
'port' => env('SERVER_PORT', 8080),

// The default host the preview is served on
'host' => env('SERVER_HOST', 'localhost'),
'dashboard' => env('SERVER_DASHBOARD', true),

// Should preview pages be saved to the output directory?
'save_preview' => true,

// Should the realtime compiler dashboard be enabled?
'dashboard' => env('SERVER_DASHBOARD', true),

// Can the dashboard make edits to the project file system?
'dashboard_editor' => true,

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

],

/*
Expand Down

0 comments on commit 0cbdbeb

Please sign in to comment.