Any ideas what to do, whit this error?
The simple test as angular v12, Universal SSR fail the W3 HTML validation.
the AppComponent have a selector like:
@Component({
selector: 'app',
templateUrl: './app.component.html',
encapsulation: ViewEncapsulation.None
})
and on index
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<app id="app"></app>
</body>
</html>
But W3 HTML validation shows an error:
I also try to change the selector name to like: 'project' and I got the same error