I use vite, vue3 and A11Y HTML5 Validator Chrome ispectorWhile inspecting A11Y HTML5 Validator, <head> must start with [charset] error is displayed continuously.
in index.html code<link rel="icon" type="image/svg+xml" href="/vite.svg" />
Commenting out the code makes that error go away.I don't know what could be the reason.my code is
<!DOCTYPE html><html lang="ko"><head><meta charset="UTF-8" /><link rel="icon" type="image/svg+xml" href="/vite.svg" /><meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, shrink-to-fit=no, maximum-scale=5.0" /><title>web title</title></head><body>...
delete <link rel="icon" type="image/svg+xml" href="/vite.svg" />
codeworking but I don't know why
Once the problem is solved I wonder why