This is likely to be a routing issue. I am currently using React + FlowRouter.
I am having trouble getting an image to display, but only on a route that’s two levels deep. In other words, '/about' works fine but '/category/popular' doesn’t.
The offending route is this:
FlowRouter.route('/category/:catName', {
action(params) {
ReactLayout.render(App, { content:
<CategoryPage categoryName={params.catName} />
});
}
}
);
I’ve put a burger.png in the public folder at the root level of my Meteor app. What’s interesting here is that when I right-click the broken image, I get a path of http://localhost:3000/category/burger.png instead of http://localhost:3000/burger.png which would be the correct one.
How do I override this behaviour?