Vite configuration

Hi everyone, i'm trying to make ma own vite configuration because i've an CheckboxList with HTML like the exemple in the docs:
CheckboxList::make('technology')
                        ->options([
                            'tailwind' => '<span class="text-blue-500">Tailwind</span>',
                            'alpine' => '<span class="text-green-500">Alpine</span>',
                            'laravel' => '<span class="text-red-500">Laravel</span>',
                            'livewire' => '<span class="text-pink-500">Livewire</span>', 
                        ]) 
                        ->searchable()  
                        ->allowHtml(),  


so i've follow the instructions in here: https://filamentphp.com/docs/3.x/tables/installation#compiling-assets
(creating vite.config.js, tailwind config, postcss etc...)
and my default layout in resources/views/components/layouts/app.blade.php is not taking.
I've also made an php artisan optimize:clear but it's not working. Did i do something wrong ?
When i'm search the default layout it seems to base.blade.php in vendor/filament/filament/resources/views/components/layout/base.blade.php

I've also upgrade filament before create this topic.
Thanks
Was this page helpful?