Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这应该很明显,但我在 grunt 帮助或网站中找不到它。
我怎么告诉
grunt server
使用 index.html 以外的文件?
你到底是什么意思?
grunt server像任何静态文件服务器一样提供目录中的所有文件。
index.html因此,假设您在contact.html目录中调用了文件。现在,这些文件将在您在 localhost 上配置的任何端口提供服务。
index.html
contact.html
因此,通过访问localhost:PORT/index.html,localhost:PORT/contact.html您可以在浏览器中看到这些页面。
localhost:PORT/index.html
localhost:PORT/contact.html