Favicon
Checks for favicon presence
Checks for favicon presence
| Rule ID | core/favicon |
| Category | Core SEO |
| Scope | Per-page |
| Severity | warning |
| Weight | 3/10 |
Solution
Favicons help with brand recognition and UX. Include multiple formats: <link rel='icon' href='/favicon.ico'> for legacy, <link rel='icon' type='image/svg+xml' href='/favicon.svg'> for modern browsers, and <link rel='apple-touch-icon' href='/apple-touch-icon.png'> for iOS. 32x32px for .ico, 180x180px for Apple touch icon.
Enable / Disable
Disable this rule
squirrel.toml
toml[rules]
disable = ["core/favicon"]Disable all Core SEO rules
squirrel.toml
toml[rules]
disable = ["core/*"]Enable only this rule
squirrel.toml
toml[rules]
enable = ["core/favicon"]
disable = ["*"]