Skip to content

no-duplicate-base

Detect multiple base or title elements.

Severity

error

❌ Incorrect

html
<base href="/">
<base href="/other">

✅ Correct

html
<base href="/">

Reference

Configuration

json
{
  "rules": {
    "no-duplicate-base": "error"
  }
}

Released under the MIT License.