Meteor Images, CSS, “Normal” Web Serving
问题 I've seen this question come up a lot; How do I put images on my Meteor website? How do I host "standard" web content with Meteor? I tried adding a <img src="img/myimage.png"> tag but no image shows! How can I host some files on a Meteor site? 回答1: Put the content in a folder named "public" in your project root. You do not need to include /public in your URLs. Any additional folder structure within public is supported. NodeJS routing plugins are not required, as other answers have supplied.