I have an angular project that is deployed aws s3
I built the project using ng build --prod
I copied the dist folder files in the s3 bucket..
The page loads smoothly for the first time but when i reload it .. it shows me this error
GET https://fellowgenius.com/facade 404
How do I solve this?
Here is my index html page:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>FellowGenius</title>
<base href="./" />
<script>
var global = global || window;
var Buffer = Buffer || [];
var process = process || {
env: { DEBUG: undefined },
version: [],
};
</script>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body class="mat-typography">
<app-root></app-root>
</body>
</html>