Remove CSS inline
This commit is contained in:
@@ -36,7 +36,6 @@
|
|||||||
"backup-manager/laravel": "^1.1",
|
"backup-manager/laravel": "^1.1",
|
||||||
"barryvdh/laravel-cors": "^0.8",
|
"barryvdh/laravel-cors": "^0.8",
|
||||||
"doctrine/dbal": "^2.5",
|
"doctrine/dbal": "^2.5",
|
||||||
"fedeisas/laravel-mail-css-inliner": "^1.5",
|
|
||||||
"fideloper/proxy": "^3.1",
|
"fideloper/proxy": "^3.1",
|
||||||
"graham-campbell/binput": "^3.5",
|
"graham-campbell/binput": "^3.5",
|
||||||
"graham-campbell/core": "^5.1",
|
"graham-campbell/core": "^5.1",
|
||||||
|
|||||||
@@ -177,7 +177,6 @@ return [
|
|||||||
AltThree\Emoji\EmojiServiceProvider::class,
|
AltThree\Emoji\EmojiServiceProvider::class,
|
||||||
BackupManager\Laravel\Laravel5ServiceProvider::class,
|
BackupManager\Laravel\Laravel5ServiceProvider::class,
|
||||||
Barryvdh\Cors\ServiceProvider::class,
|
Barryvdh\Cors\ServiceProvider::class,
|
||||||
Fedeisas\LaravelMailCssInliner\LaravelMailCssInlinerServiceProvider::class,
|
|
||||||
Fideloper\Proxy\TrustedProxyServiceProvider::class,
|
Fideloper\Proxy\TrustedProxyServiceProvider::class,
|
||||||
GrahamCampbell\Binput\BinputServiceProvider::class,
|
GrahamCampbell\Binput\BinputServiceProvider::class,
|
||||||
GrahamCampbell\Exceptions\ExceptionsServiceProvider::class,
|
GrahamCampbell\Exceptions\ExceptionsServiceProvider::class,
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of Cachet.
|
|
||||||
*
|
|
||||||
* (c) Alt Three Services Limited
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view the LICENSE
|
|
||||||
* file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Strip styles
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Settings this to false prevents the inliner from removing the style
|
|
||||||
| definitions that have been inlined.
|
|
||||||
|
|
|
||||||
| Notice that media query styles are not inlined, and hence never
|
|
||||||
| stripped.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'strip-styles' => true,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Remove classes
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Settings this to false disables the removal of class attributes from
|
|
||||||
| your html elements (do not enable this if you use media queries)
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'strip-classes' => true,
|
|
||||||
|
|
||||||
];
|
|
||||||
Reference in New Issue
Block a user