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); + } + } + }, });