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.
我最近用 create-react-app 创建了一个网站。既然这不是一个网络应用程序,为什么我需要一个服务器才能看到它?我试图在构建文件夹中打开索引文件,但除非我从服务器提供它,否则它不起作用。
您可以在文件中设置主页根 url,package.json例如
package.json
{ ..., "homepage":"file:///<path to build directory" }
npm 运行构建
这将在没有服务器的情况下从文件系统的构建目录中找到静态内容。