| 12345678910111213141516171819202122232425 |
- import inertia from '@inertiajs/vite';
- import { wayfinder } from '@laravel/vite-plugin-wayfinder';
- import tailwindcss from '@tailwindcss/vite';
- import react from '@vitejs/plugin-react';
- import laravel from 'laravel-vite-plugin';
- import { defineConfig } from 'vite';
- export default defineConfig({
- plugins: [
- laravel({
- input: ['resources/css/app.css', 'resources/js/app.tsx'],
- refresh: true,
- }),
- inertia(),
- react({
- babel: {
- plugins: ['babel-plugin-react-compiler'],
- },
- }),
- tailwindcss(),
- wayfinder({
- formVariants: true,
- }),
- ],
- });
|