如何在 Parcel.js 中修复服务器 运行 上的 'no entries found'
How to fix 'no entries found' on server run in Parcel.js
尝试 运行 使用 'parcel index.js' 服务器:
Server running at http://localhost:1234 No entries found.
at Bundler.bundle (/usr/local/lib/node_modules/parcel-bundler/src/Bundler.js:275:17)
服务器显示 404 错误。我的所有项目都遇到了同样的问题,所以我觉得这是一个全球性问题。所有项目一切正常,但突然出现这种情况。
已经尝试过:
- 正在卸载 parcel-bundler 并重新安装(全局 + 本地)
谢谢!
一个简单的错误,当我应该使用 "parcel index.html"
时却使用了 "parcel index.js"
我在 windows 上的错误是我使用了 parcel src/index.html
而不是 parcel src\index.html
我输入的是 parcel /src/index.html
而不是 parcel src/index.html
。在这上面花了20分钟......
如上所述,检查你工作的目录,我在 src 里面,运行 src/parcel index.html
它应该是 parcel index.html
可能你是运行一个项目的子文件中的parcel,所以需要添加相对于根目录的路径,我的路径是parcel Navigation-webpage/index.html
尝试
npm i @parcel/transformer-sass
并更新包裹打包器。
npm i parcel
尝试 运行 使用 'parcel index.js' 服务器:
Server running at http://localhost:1234 No entries found. at Bundler.bundle (/usr/local/lib/node_modules/parcel-bundler/src/Bundler.js:275:17)
服务器显示 404 错误。我的所有项目都遇到了同样的问题,所以我觉得这是一个全球性问题。所有项目一切正常,但突然出现这种情况。
已经尝试过:
- 正在卸载 parcel-bundler 并重新安装(全局 + 本地)
谢谢!
一个简单的错误,当我应该使用 "parcel index.html"
时却使用了 "parcel index.js"我在 windows 上的错误是我使用了 parcel src/index.html
而不是 parcel src\index.html
我输入的是 parcel /src/index.html
而不是 parcel src/index.html
。在这上面花了20分钟......
如上所述,检查你工作的目录,我在 src 里面,运行 src/parcel index.html
它应该是 parcel index.html
可能你是运行一个项目的子文件中的parcel,所以需要添加相对于根目录的路径,我的路径是parcel Navigation-webpage/index.html
尝试
npm i @parcel/transformer-sass
并更新包裹打包器。
npm i parcel