Skip to content

Commit

Permalink
Add environment variable for the live edit feature
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 13, 2023
1 parent 9166d4e commit 6b42303
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
'save_preview' => true,

// Should the live edit feature be enabled?
'live_edit' => true,
'live_edit' => env('SERVER_LIVE_EDIT', true),

// Configure the realtime compiler dashboard
'dashboard' => [
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/config/hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
'save_preview' => true,

// Should the live edit feature be enabled?
'live_edit' => true,
'live_edit' => env('SERVER_LIVE_EDIT', true),

// Configure the realtime compiler dashboard
'dashboard' => [
Expand Down

0 comments on commit 6b42303

Please sign in to comment.