Add (minifier)

Add (seotools): facebook app id
This commit is contained in:
2023-09-25 03:28:46 +08:00
parent 3aa6367e83
commit 4713df71c0
5 changed files with 95 additions and 3 deletions

19
config/htmlminify.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Env Variable for HTML_MINIFY
|--------------------------------------------------------------------------
|
| Set this value to the false if you don't need html minify
| this is by default "true"
|
*/
'default' => env('HTML_MINIFY', true),
// exclude route name for exclude from minify
'exclude_route' => [
// 'routeName'
]
];

View File

@@ -4,6 +4,10 @@
*/
return [
'fb_app_id' => '1259730771382460',
'meta' => [
/*
* The default configurations to be used by the meta generator.
@@ -41,7 +45,7 @@
'url' => false, // Set null for using Url::current(), set false to total remove
'type' => false,
'site_name' => false,
'images' => [],
'images' => ['https://echoscoop.com/pwa/icon-512x512.png'],
],
],
'twitter' => [
@@ -62,7 +66,7 @@
'description' => 'Distilling world news into bite-sized scoops.', // set false to total remove
'url' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [],
'images' => ['https://echoscoop.com/pwa/icon-512x512.png'],
],
],
];