Some checks failed
Deploy Roxane to Preprod / deploy (push) Failing after 26h12m0s
30 lines
787 B
JavaScript
30 lines
787 B
JavaScript
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/css/backend.css',
|
|
'resources/css/fonts.css',
|
|
'resources/css/filament-admin.css',
|
|
'resources/js/app.tsx',
|
|
],
|
|
ssr: 'resources/js/ssr.tsx',
|
|
refresh: true,
|
|
}),
|
|
react(),
|
|
tailwindcss(),
|
|
wayfinder({
|
|
formVariants: true,
|
|
}),
|
|
],
|
|
esbuild: {
|
|
jsx: 'automatic',
|
|
},
|
|
});
|