- Rewrote runbooks.blade.php and view-run.blade.php using <x-filament::section> instead of raw Tailwind div cards (cards now render correctly) - Created resources/css/filament/system/theme.css and registered viteTheme() on SystemPanelProvider — fixes missing Tailwind utilities in system panel - Added ->live() to scope Radio field so Single tenant selector appears immediately - Extended spec.md with US4 (UX Polish), FR-010–FR-014 - Extended tasks.md with Phase 7 (T050–T057)
24 lines
600 B
JavaScript
24 lines
600 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: [
|
|
'resources/css/app.css',
|
|
'resources/css/filament/admin/theme.css',
|
|
'resources/css/filament/system/theme.css',
|
|
'resources/js/app.js',
|
|
],
|
|
refresh: true,
|
|
}),
|
|
tailwindcss(),
|
|
],
|
|
server: {
|
|
watch: {
|
|
ignored: ['**/storage/framework/views/**'],
|
|
},
|
|
},
|
|
});
|