diff --git a/composer.json b/composer.json index 8c46c90..e22db38 100644 --- a/composer.json +++ b/composer.json @@ -2,9 +2,9 @@ "name": "transformstudios/front", "require": { "php": "^8.3", - "illuminate/contracts": "^11.0 || ^12.0", "pixelfear/composer-dist-plugin": "^0.1.4", - "statamic/cms": "^5.0 || ^6.0" + "statamic/cms": "^5.0 || ^6.0", + "stillat/proteus": "^4.0" }, "require-dev": { "mockery/mockery": "^1.3.1", diff --git a/resources/css/cp.css b/resources/css/cp.css index 906e2b8..c73ea20 100644 --- a/resources/css/cp.css +++ b/resources/css/cp.css @@ -1,3 +1,12 @@ #front-chat-container { z-index: 100 !important } + +/* !Front Chat */ +#front-chat-container .fc-1_tjF { + display: none!important; +} + +#front-chat-iframe { + z-index: 1!important; +} diff --git a/src/UpdateScripts/AddToLoggingConfig.php b/src/UpdateScripts/AddToLoggingConfig.php new file mode 100644 index 0000000..0c2e9bd --- /dev/null +++ b/src/UpdateScripts/AddToLoggingConfig.php @@ -0,0 +1,31 @@ +set('channels.front', [ + 'driver' => 'custom', + 'via' => \TransformStudios\Front\Logging\Logger::class, + 'level' => ConfigWriter::f()->env('FRONT_LOGGING_LEVEL', 'error'), + ])->save(); + dd('saved'); + } +} diff --git a/vite.config.js b/vite.config.js index 47291c3..51f0ddf 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,6 +1,5 @@ import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; -import vue from '@vitejs/plugin-vue2'; export default defineConfig({ plugins: [ @@ -13,6 +12,5 @@ export default defineConfig({ publicDirectory: 'dist', hotFile: 'dist/hot', }), - vue(), ], });