Parcel Bundler:localhost 上一切正常,但 Dist 上的 index.html 显示错误
Parcel Bundler: Everything is okay on localhost but The index.html on Dist is showing Error
我正在学习 Parcel 并尝试捆绑与 index.js 连接的 index.html。包裹 localhost:1234
上一切正常,但是当我打开 index.html 应用程序时,在 dist 文件夹中应用程序无法运行。
注意:我知道问题是由于在我的 index.js
中使用导入引起的
我的package.json文件-
{
"name": "reddit",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"cssnano": "^4.1.10"
},
"description": ""
}
My index.html code for script connect
My all folders list
importing redditapi.js in index.js(check the all folder list image)
The error I am getting when I try to use the APP on index.html from dist folder
问题已解决。导入不应包括来自。应该是 import 'index';谢谢你。在我的 NPM 运行 构建命令之后一切都已修复。
我正在学习 Parcel 并尝试捆绑与 index.js 连接的 index.html。包裹 localhost:1234
上一切正常,但是当我打开 index.html 应用程序时,在 dist 文件夹中应用程序无法运行。
注意:我知道问题是由于在我的 index.js
中使用导入引起的我的package.json文件-
{
"name": "reddit",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"cssnano": "^4.1.10"
},
"description": ""
}
My index.html code for script connect
My all folders list
importing redditapi.js in index.js(check the all folder list image)
The error I am getting when I try to use the APP on index.html from dist folder
问题已解决。导入不应包括来自。应该是 import 'index';谢谢你。在我的 NPM 运行 构建命令之后一切都已修复。