This is the first time I’ve deployed an Ember App. I’m getting the following error after I deploy to Tomcat and attempt to run my Ember App:
Uncaught UnrecognizedURLError: /index.html
Deployed using the following method from another post:
• Open config/environment.js • You could see baseURL as / . Change it to /your_app_root_folder (e.g: /myember) that will be stored under tomcat webapps/ folder. • In terminal, execute ‘ember build production’ • Now, copy /dist and paste it in tomcat webapps/ • rename /dist to /your_app_root_folder (e.g: /myember) • Start tomcat and connect localhost:port/myember/index.html in browser.
Any ideas on how to solve?
.