Meteor Images, CSS, “Normal” Web Serving

前端 未结 2 996
小鲜肉
小鲜肉 2021-02-04 06:02

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 add
2条回答
  •  天命终不由人
    2021-02-04 06:38

    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.
    • Place external library's javascript files in /lib. They will be automatically included.

    Explanation

    In Meteor, you can host "standard" web content by creating a "public" directory in the root of your project. Any images, files, or data you place in this folder will be served as normal by the NodeJS server, as if they were in the root of the server.


    Example

    • Structure within project: /public/test/img.png
    • Corresponding image URL: /test/img.png
    • Example HTML tag:

提交回复
热议问题