Closed
Description
OS?
Windows 10
Versions.
angular-cli: 1.0.0-beta.20-4
node: 6.9.1
npm: 3.10.8
I believe #2646 introduced a change in which styles are bundled in their own css file in a link
tag in index.html
. The problem is this link
tag is missing the closing /
thus not passing strict validation.
Line 13, Column 88: end tag for "link" omitted, but OMITTAG NO was specified
…f="styles.6aa49abe71cac0b676ea04c83b8009cd.bundle.css" rel="stylesheet"></head>
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
The template engine we have in the server, used to inject environment variables, etc. in the index.html before serving it, requires it to be a well-formed XHTML so every element must be closed.
Can you do anything about it?