|
3 | 3 | // config for Elegantly/Seo
|
4 | 4 | return [
|
5 | 5 |
|
| 6 | + /* |
| 7 | + |-------------------------------------------------------------------------- |
| 8 | + | Default Title |
| 9 | + |-------------------------------------------------------------------------- |
| 10 | + | |
| 11 | + | This is the default value used for <title>, "og:title", "twitter:title" |
| 12 | + | |
| 13 | + */ |
6 | 14 | 'title' => env('APP_NAME', 'Laravel'),
|
7 | 15 |
|
| 16 | + /* |
| 17 | + |-------------------------------------------------------------------------- |
| 18 | + | Default Description |
| 19 | + |-------------------------------------------------------------------------- |
| 20 | + | |
| 21 | + | This is the default value used for <meta name="description">, <meta property="og:description">, <meta name="twitter:description"> |
| 22 | + | |
| 23 | + */ |
8 | 24 | 'description' => null,
|
9 | 25 |
|
| 26 | + /* |
| 27 | + |-------------------------------------------------------------------------- |
| 28 | + | Default Image path |
| 29 | + |-------------------------------------------------------------------------- |
| 30 | + | |
| 31 | + | This is the default value used for <meta property="og:image">, <meta name="twitter:image"> |
| 32 | + | You can use relative path like "/opengraph.png" or url like "https://example.com/opengraph.png" |
| 33 | + | |
| 34 | + */ |
| 35 | + 'image' => null, |
| 36 | + |
| 37 | + /* |
| 38 | + |-------------------------------------------------------------------------- |
| 39 | + | Default Robots |
| 40 | + |-------------------------------------------------------------------------- |
| 41 | + | |
| 42 | + | This is the default value used for <meta name="robots"> |
| 43 | + | See Google documentation here: https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=fr#directives |
| 44 | + | |
| 45 | + */ |
10 | 46 | 'robots' => 'max-snippet:-1,max-image-preview:large,max-video-preview:-1',
|
11 | 47 |
|
| 48 | + /* |
| 49 | + |-------------------------------------------------------------------------- |
| 50 | + | Default Sitemap path |
| 51 | + |-------------------------------------------------------------------------- |
| 52 | + | |
| 53 | + | This is the default value used for <link rel="sitemap"> |
| 54 | + | You can use relative path like "/sitemap.xml" or url like "https://example.com/sitemap.xml" |
| 55 | + | |
| 56 | + */ |
12 | 57 | 'sitemap' => null,
|
13 | 58 |
|
14 |
| - 'image' => null, |
| 59 | + |
15 | 60 |
|
16 | 61 | ];
|
0 commit comments