From 952d4955ebb87b5e632022b528ef4056aab5b6d8 Mon Sep 17 00:00:00 2001 From: Remco Date: Tue, 20 Jan 2026 21:37:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Fixed=20more=20=F0=9F=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Updated_Cms/.gitignore | 1 + Updated_Cms/composer.json | 3 +- Updated_Cms/public/web.config | 38 ++++--------------- .../resources/themes/dusk/vite.config.js | 8 ++++ 4 files changed, 18 insertions(+), 32 deletions(-) diff --git a/Updated_Cms/.gitignore b/Updated_Cms/.gitignore index 2beb5534d8..bb9eadb9d8 100644 --- a/Updated_Cms/.gitignore +++ b/Updated_Cms/.gitignore @@ -23,3 +23,4 @@ yarn.lock /public/assets/images/generated-logos CLAUDE.md .phpunit.cache +/bootstrap/cache/filament/* diff --git a/Updated_Cms/composer.json b/Updated_Cms/composer.json index c3d46d5d9b..f80c24f2b1 100644 --- a/Updated_Cms/composer.json +++ b/Updated_Cms/composer.json @@ -60,7 +60,8 @@ "post-autoload-dump": [ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi", - "@php artisan filament:upgrade" + "@php artisan filament:upgrade", + "@php artisan filament:cache-components" ], "post-update-cmd": [ "@php artisan vendor:publish --tag=laravel-assets --ansi --force" diff --git a/Updated_Cms/public/web.config b/Updated_Cms/public/web.config index 268144989a..726f465172 100644 --- a/Updated_Cms/public/web.config +++ b/Updated_Cms/public/web.config @@ -1,42 +1,18 @@ - + - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - + diff --git a/Updated_Cms/resources/themes/dusk/vite.config.js b/Updated_Cms/resources/themes/dusk/vite.config.js index b3532d2328..f03fcd530f 100644 --- a/Updated_Cms/resources/themes/dusk/vite.config.js +++ b/Updated_Cms/resources/themes/dusk/vite.config.js @@ -47,4 +47,12 @@ export default defineConfig({ ], }, }, + build: { + rollupOptions: { + onwarn(warning, warn) { + if (warning.code === 'INVALID_ANNOTATION') return; + warn(warning); + } + } + }, });