From 3a78a47d11ce78de85d9aa1c773a4620662f2c32 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Wed, 26 Jul 2023 15:00:18 +1000 Subject: [PATCH] Add Herd docs --- vite.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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] }), ], });