Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ This serves two purposes:

- Simplified the asset file locator to only serve files from the media source directory in https://github.com/hydephp/develop/pull/2012
- Added Vite HMR support in https://github.com/hydephp/develop/pull/2016
- Added experimental Laravel Herd support in https://github.com/hydephp/develop/pull/2227
- Added Laravel Herd support in https://github.com/hydephp/develop/pull/2227

#### HydeFront

Expand Down
4 changes: 4 additions & 0 deletions docs/creating-content/managing-assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ You can check if the Vite HMR server is running with `Vite::running()`, and you
@endif
```

### Laravel Herd

If using Laravel Herd for HydePHP, you can still use Vite by running `npm run dev`. The Herd integration is in public beta, please report any issues to https://github.com/hydephp/realtime-compiler.

## Additional Information and Answers to Common Questions

### Is NodeJS/NPM Required for Using Hyde?
Expand Down
6 changes: 5 additions & 1 deletion docs/extensions/realtime-compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ The live editor plugin code will not be saved to your static site.

#### Usage

Since HydePHP v2 (Realtime Compiler v4), HydePHP has an experimental integration with [Herd](https://herd.laravel.com/) to provide a seamless development experience. The realtime compiler includes a custom Valet driver that allows Herd to serve your HydePHP site.
Since HydePHP v2 (Realtime Compiler v4), HydePHP has a new integration with [Herd](https://herd.laravel.com/) to provide a seamless development experience. The realtime compiler includes a custom Valet driver that allows Herd to serve your HydePHP site.

To install the Valet driver for Herd, run the following command:

Expand All @@ -135,6 +135,10 @@ php hyde herd:install

This will copy the HydeValetDriver to your Herd configuration directory, allowing Herd to automatically serve your HydePHP site.

To use this with Vite, run `npm run dev` and the Herd server will pick it up.

>info The Herd integration is in public beta, please report any issues to https://github.com/hydephp/realtime-compiler.

#### Features

When using the Herd integration, you get the following benefits:
Expand Down
Loading