How to Add React js to Laravel 11 with Vite

7 months ago admin Laravel

In this tutorial, we will see how to add React js to Laravel 11 with Vite, since version 9.19 Laravel has moved from Webpack to Vite which becomes the default frontend asset bundler for Laravel applications.


Install the packages

First of all, I assume that you have already installed a fresh new Laravel application, we will add react, react-dom, and vitejs/plugin-react to our project.

                                                    
                                                                                                                
yarn add react@latest react-dom@latest
yarn add @vitejs/plugin-react

Update the file vite.config.js

Next, inside the file vite.config.js, add React to the plugins array.

                                                        
                                                                                                                        
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import react from '@vitejs/plugin-react';


export default defineConfig({
    plugins: [
        react(),
        laravel({
            input: ['resources/css/app.css', 'resources/js/app.js'],
            refresh: true,
        }),
    ]
});


Create the home component

Inside the js folder let's create a new file 'Home.jsx', and add the code below.

                                                        
                                                                                                                        
import React from "react"

export default function Home() {
    return (
        <div className="container">
            <div className="row my-5">
                <div className="col-md-8 mx-auto">
                    <h1 className="text-danger"> Add React js to laravel 11 with vite</h1>
                </div>
            </div>
        </div>
    )
}

Update the file app.js

Next, rename the file app.js to app.jsx, let's import the home component and add it to the app.

                                                        
                                                                                                                        
import './bootstrap';

import React from "react"
import ReactDOM from 'react-dom/client';        

import Home from './Home';

ReactDOM.createRoot(document.getElementById('app')).render(     
    <Home />        
);

Update the welcome page

Next, update the file welcome.blade.php, we add the link to the app.jsx file.

Now you can run php artisan serve and npm run dev and everything will work fine you will see the content of the home component on the welcome page.

Demo

                                                        
                                                                                                                        
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Laravel</title>

        <!-- Fonts -->
        <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">

        <!-- Styles -->
        <style>
            body {
                font-family: 'Nunito', sans-serif;
            }
        </style>
    </head>
    <body>
        <div id="app"></div>
        @vite('resources/js/app.jsx')
    </body>
</html>

Related Tuorials

How to Conditionally Include a Blade Template in Laravel

In this lesson, we will see how to conditionally include a blade template in Laravel.Sometimes,...


How to Include a Blade Template Only if it Exists in Laravel

In this lesson, we will see how to include a blade template only if it exists in Laravel.Sometimes,&...


How to Pass a Variable to Include in Laravel

In this lesson, we will see how to pass a variable to include in Laravel. Sometimes, we want to pass...


How to the Get the Previous and Next Posts in Laravel

In this lesson, we will see how to get the previous and next posts in Laravel, sometimes when you ge...


How Do you Format a Number as K/M/B in Laravel

In this lesson, we will see how to format a number as K/M/B in Laravel, sometimes we want to display...


How to Override Laravel Fortify Default Registration Redirect

In this lesson, we will see how to override Laravel Fortify default registration redirect, sometimes...


How to Override Laravel Fortify Default Login Redirect

In this lesson, we will see how to override Laravel Fortify default login redirect, sometimes when w...


How to Use the Same Validation Form Request for both Create and Update in Laravel

In this lesson, we will see how to use the same validation form request for both create and update i...


How to Get Raw SQL Output from the Eloquent Model in Laravel 11

In this lesson, we will see how to get raw SQL output from the eloquent model in Laravel 11, sometim...


How to Check if a Record Does Not Exist in Laravel

in this lesson, we will see how to check if a record does not exist in laravel, sometimes you need t...