diff --git a/vite.md b/vite.md index 334a130cae..799d4f7c89 100644 --- a/vite.md +++ b/vite.md @@ -134,7 +134,7 @@ The Laravel plugin also supports multiple entry points and advanced configuratio If your local development web server is serving your application via HTTPS, you may run into issues connecting to the Vite development server. -If you are using [Laravel Valet](/docs/{{version}}/valet) for local development and have run the [secure command](/docs/{{version}}/valet#securing-sites) against your application, you may configure the Vite development server to automatically use Valet's generated TLS certificates: +If you are using [Laravel Herd](https://herd.laravel.com) and have secured the site or you are using [Laravel Valet](/docs/{{version}}/valet) and have run the [secure command](/docs/{{version}}/valet#securing-sites) against your application, you may configure the Vite development server to automatically use the generated TLS certificates: ```js import { defineConfig } from 'vite'; @@ -144,7 +144,7 @@ export default defineConfig({ plugins: [ laravel({ // ... - valetTls: 'my-app.test', // [tl! add] + detectTls: 'my-app.test', // [tl! add] }), ], });