angular 2: assets not loaded when deployed in subdirectory
replace ../../../assets/images/example.jpg
to ./assets/images/example.jpg
then it worked for me.
Most of the examples I've seen are of this format:
ng build --base-href /myUrl/
So I would think you would need this:
ng build --prod --base-href /angular-test/
( With a trailing slash )