Files
memefast/config/seotools.php
2025-07-17 05:42:53 +08:00

82 lines
2.6 KiB
PHP

<?php
/**
* @see https://github.com/artesaos/seotools
*/
$title = 'MEMEFAST: Make meme videos right in your browser';
$description = 'Simple & fast meme video editor, 100% powered by the web.';
return [
'inertia' => env('SEO_TOOLS_INERTIA', false),
'meta' => [
/*
* The default configurations to be used by the meta generator.
*/
'defaults' => [
'title' => $title,
'titleBefore' => false, // Put defaults.title before page title, like 'It's Over 9000! - Dashboard'
'description' => $description,
'separator' => ' - ',
'keywords' => [],
'canonical' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'robots' => false, // Set to 'all', 'none' or any combination of index/noindex and follow/nofollow
],
/*
* Webmaster tags are always added.
*/
'webmaster_tags' => [
'google' => null,
'bing' => null,
'alexa' => null,
'pinterest' => null,
'yandex' => null,
'norton' => null,
],
'add_notranslate_class' => false,
],
'opengraph' => [
/*
* The default configurations to be used by the opengraph generator.
*/
'defaults' => [
'title' => $title,
'description' => $description,
'url' => false, // Set null for using Url::current(), set false to total remove
'type' => false,
'site_name' => false,
'images' => [
'memefast-og.jpg',
],
],
],
'twitter' => [
/*
* The default values to be used by the twitter cards generator.
*/
'defaults' => [
'card' => 'summary',
'site' => '@memefast',
'title' => $title,
'description' => $description,
'image' => 'memefast-og.jpg',
// 'creator' => '@memefast',
// 'url' => , // Set null for using Url::current(), set false to total remove
],
],
'json-ld' => [
/*
* The default configurations to be used by the json-ld generator.
*/
'defaults' => [
'title' => $title,
'description' => $description,
'url' => null, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [
'memefast-og.jpg',
],
],
],
];