I have one app built with Angular 5.2. I've also built a web component from Angular 8.0. If I'm about to put that web component in a static html I would do it like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom Button Test Page</title>
<!-- This is the Web Component import -->
<script src="elements.js"></script>
</head>
<body>
<custom-button></custom-button>
</body>
</html>
Running this index.html file would have the web component built in. How ever if I apply the same approach to an Angular app (to include it in my Angular 5.2 app), it doesn't work.
If I try importing straight from main index.html, I get the file not found error. If I import it from angular.json scripts, I will get unexpected token error.
How exactly am I supposed to import an Angular web component into existing Angular app?
8.0component in a5.2app. You'll need to upgrade your angular version. I'm not sure what you mean by "static" html. You can't consume a component without running angular