如何在 Parcel 中手动更改文件名?
How do I manually change a file name in Parcel?
每次我尝试 运行 npm start
或 npm build
时,我都会收到一条错误消息 unknown: Entry /mnt/c/Users/kabre/Desktop/18-forkify/index.html does not exist
。我被告知 Parcel 可能会自动重命名我的 index.html。不知道如何继续解决这个问题,因为我刚刚开始学习 Parcel/npm。
试试这个:
- 运行 npm init -y 在你的项目中
- 在你的项目中安装包裹:npm install parcel-bundler --save-dev
- 将此放入您的 package.json:
"scripts": {
"start": "parcel ./index.html",
}
- 运行 npm start 之后.
并将运行完美。
中找到更多
每次我尝试 运行 npm start
或 npm build
时,我都会收到一条错误消息 unknown: Entry /mnt/c/Users/kabre/Desktop/18-forkify/index.html does not exist
。我被告知 Parcel 可能会自动重命名我的 index.html。不知道如何继续解决这个问题,因为我刚刚开始学习 Parcel/npm。
试试这个:
- 运行 npm init -y 在你的项目中
- 在你的项目中安装包裹:npm install parcel-bundler --save-dev
- 将此放入您的 package.json:
"scripts": {
"start": "parcel ./index.html",
}
- 运行 npm start 之后.
并将运行完美。
中找到更多