The global css present in the styles.scss file is not getting applied. I have used single-spa in the application
Below is my index.html file-
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<base href="/"><meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="/src/styles.scss" type="text/scss" rel="stylesheet" />
</head>
<body>
<app-root></app-root>
</body>
</html>
I am using single-spa version 5.9.4. I tried getting the global styles from the angular.json file but for one of the MFEs the global scss styles are not getting applied
You should look in angular.json if it's not correct check a parent folder of src maybe another style.scss in there.