I have the following directories in my angled application:
node_modules/
src/
--client/
----/app/
----/index.html
--server/
package.json
I would like that when the user accesses my site he redirect directly to src / client / index.html and hide src / client /.
What is the best way to do this? Thanks.