diff --git a/config/hyde.php b/config/hyde.php index d744efa2..90962d76 100644 --- a/config/hyde.php +++ b/config/hyde.php @@ -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, + ], /*