Closed shinokada closed 2 days ago
According to HTML5 specification, meta and link do not have the trailing slash.
meta
link
So shouldn't it be
<meta charset="utf-8"> <link rel="icon" href="%sveltekit.assets%/favicon.png"> <meta name="viewport" content="width=device-width, initial-scale=1">
rather than:
<meta charset="utf-8" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
Check src/app.html.
src/app.html
No response
n/a
annoyance
Also according to the spec, self-closing tags can close with either /> or > (there is no difference).
/>
>
Closing per the last comment
Describe the bug
According to HTML5 specification,
meta
andlink
do not have the trailing slash.So shouldn't it be
rather than:
Reproduction
Check
src/app.html
.Logs
No response
System Info
Severity
annoyance