From dd81c302575ce7998c9c7e695c99aead87ad8650 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:09:28 +0300 Subject: [PATCH 1/2] Update frontend.md --- frontend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend.md b/frontend.md index 2c8d9802cda..31da734876e 100644 --- a/frontend.md +++ b/frontend.md @@ -174,7 +174,7 @@ If you would like to build your frontend using Inertia and Vue / React, you can ## Bundling Assets -Regardless of whether you choose to develop your frontend using Blade and Livewire or Vue / React and Inertia, you will likely need to bundle your application's CSS into production ready assets. Of course, if you choose to build your application's frontend with Vue or React, you will also need to bundle your components into browser ready JavaScript assets. +Regardless of whether you choose to develop your frontend using Blade and Livewire or Vue / React and Inertia, you will likely need to bundle your application's CSS into production-ready assets. Of course, if you choose to build your application's frontend with Vue or React, you will also need to bundle your components into browser ready JavaScript assets. By default, Laravel utilizes [Vite](https://vitejs.dev) to bundle your assets. Vite provides lightning-fast build times and near instantaneous Hot Module Replacement (HMR) during local development. In all new Laravel applications, including those using our [starter kits](/docs/{{version}}/starter-kits), you will find a `vite.config.js` file that loads our light-weight Laravel Vite plugin that makes Vite a joy to use with Laravel applications. From ec5bcf2d3ebffae45529cd31c4590c3ac2a70181 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:10:29 +0300 Subject: [PATCH 2/2] Update vite.md --- vite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.md b/vite.md index 6e84c64b4cb..5b970e2da04 100644 --- a/vite.md +++ b/vite.md @@ -34,7 +34,7 @@ ## Introduction -[Vite](https://vitejs.dev) is a modern frontend build tool that provides an extremely fast development environment and bundles your code for production. When building applications with Laravel, you will typically use Vite to bundle your application's CSS and JavaScript files into production ready assets. +[Vite](https://vitejs.dev) is a modern frontend build tool that provides an extremely fast development environment and bundles your code for production. When building applications with Laravel, you will typically use Vite to bundle your application's CSS and JavaScript files into production-ready assets. Laravel integrates seamlessly with Vite by providing an official plugin and Blade directive to load your assets for development and production.