relative image source ember js
问题 i have a problem with assets path in emberjs(ember-cli). I have 2 routes: index and article route, the path for index route is just a / and the path for the article route is article/:article_id router.js Router.map(function() { this.route('article', {path : '/article/:article_id'}); }); In the idnex template, i reference my assets that are in the directory public/assets/ with the following : <img src="/assets/images/image1.jpg/> and its work great, but when i use the same tag in the article