In my expansive Angular project, there are numerous HTML, TS, and CSS files. It seems that my website is static since there is no server-side code involved. To deploy my Angular project's directory to my S3 bucket, I am relying on the "s3-website" npm package. However, rather than uploading my local directories as directories on S3, it uses a "parentDirectory\directory\file.html" syntax. When accessing the S3-hosted website, my index.html and error.html files load correctly, but my Angular components do not display. For instance, the initial "loading" screen in my index.html remains stuck because the application's components fail to load. I have attempted various approaches, such as uploading my entire project to S3 (including the node_modules directory, package.json, angular-cli.json, etc.) and only loading the src directory. Any suggestions on how I can successfully load my application when hosted on S3? Thank you.