如何修复在Parcel.js中运行的服务器上的“找不到条目”

时间:2019-05-02 08:23:49

标签: parceljs

在尝试使用“ parcel index.js”运行服务器时:

  

服务器在http://localhost:1234上运行未找到条目。       在Bundler.bundle(/usr/local/lib/node_modules/parcel-bundler/src/Bundler.js:275:17)

服务器显示404错误。我的所有项目都遇到同样的问题,所以我觉得这是一个全球性的问题。在所有项目上一切正常,突然发生了这种情况。

已经尝试:

  • 卸载包裹捆绑软件并重新安装(全局+本地)

谢谢!

5 个答案:

答案 0 :(得分:5)

如上检查我在src内并运行src/parcel index.html的工作目录,它应该是parcel index.html

答案 1 :(得分:4)

我的输入是parcel /src/index.html而不是parcel src/index.html。花了20分钟。......

答案 2 :(得分:2)

也许您正在项目的子文件中运行宗地,所以您需要添加相对于根目录的路径,我的路径是parcel Navigation-webpage/index.html

答案 3 :(得分:1)

我在Windows上的错误是我使用parcel src/index.html而不是parcel srv\index.html

答案 4 :(得分:0)

一个简单的错误,当我应该使用“ parcel index.html

时,正在使用“ parcel index.js”