Skip to content
On this page

Introduction

Overview

Laravel Vite is a project that aims to integrate Vite as seemlessly as possible with Laravel. It consists of three parts:

  • A PHP package, which provides support for parsing Vite's manifest, Blade directives, and helper functions.
  • A Vite plugin, which leverages Laravel's configuration to integrate with Vite, and provides support for SSR and multiple configurations.
  • A preset, which installs Vite in a fresh Laravel project with just one command.

Traditional approach

Laravel comes with Laravel Mix, an abstraction of Webpack. It is a well-known and battle-tested bundler, but Vite takes a different approach to improve the experience of front-end development. You can learn the details on its documentation.

That means that Laravel Vite is a replacement for Laravel Mix.

Requirements

Introduction has loaded