22 lines
467 B
JavaScript
22 lines
467 B
JavaScript
|
|
import { defineConfig } from 'vite';
|
||
|
|
import laravel from 'laravel-vite-plugin';
|
||
|
|
import react from '@vitejs/plugin-react';
|
||
|
|
import tailwindcss from '@tailwindcss/vite';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [
|
||
|
|
laravel({
|
||
|
|
input: 'resources/js/app.tsx',
|
||
|
|
refresh: true,
|
||
|
|
}),
|
||
|
|
react(),
|
||
|
|
tailwindcss(),
|
||
|
|
],
|
||
|
|
server: {
|
||
|
|
host: '0.0.0.0',
|
||
|
|
hmr: {
|
||
|
|
host: 'localhost',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|