File size: 296 Bytes
50cf058
 
4f8c3bf
50cf058
 
 
 
4f8c3bf
50cf058
 
4f8c3bf
50cf058
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import react from '@vitejs/plugin-react';

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