My requirement is i need to call a css url from a variable. Actually i dont want to hard code it. As per the logged in user , the name of the css will be downloaded in local storage and from there i want to load it on index.html, how can i make this possible ?
My index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Wbuilder</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./assets/files/css/style.css">
// instead of this i need to call this from a variable
</head>
<body>
<app-root>Loading...</app-root>
</body>
</html>