I am working on an angular frontend project that includes a dashboard component with a sidebar. The code currently has both the script tag and HTML code in the same file, making it difficult to manage. I am looking for a way to separate them to make the code more organized and maintainable.
I attempted to include the scripts using paths in my angular.json file, but it was not recognized, leaving me unsure of what steps to take next. I want to split the Head tag and script tags to enhance the structure of the code.
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html lang="en">
<head>
// Head tag content here
</head>
<moniesta-client-navbar></moniesta-client-navbar>
<body>
// Body content here
// Main dashboard components here
</body>
</html>