gpt4 book ai didi

javascript - Webpack:找不到 bundle.js

转载 作者:数据小太阳 更新时间:2023-10-29 05:12:13 25 4
gpt4 key购买 nike

我终于让他的开发服务器运行起来了,我在屏幕上看到了一些东西。我已经为 NPM 设置了一个“启动”脚本,如下所示:

"start": "webpack-dev-server --content-base app"

我得到一个错误:

http://localhost:8080/bundle.js Failed to load resource: the server responded with a status of 404 (Not Found)

我的文件夹设置如下:

appDir
->app
->node_modules
webpack.config.js
package.json

我的 webpack.config.js:

module.exports = {
context: __dirname + '/app',
entry: './index.js',
output: {
path: __dirname + '/app',
filename: './bundle.js'
}
}

你能告诉我哪里出了问题吗?

最佳答案

bundle.js 位于您的 /app 目录中。输出中的 path 选项指定文件所在的绝对路径。

此外,您不需要文件名中的 ./。它将相对于 output.path 得到解决,但它令人困惑并且可能导致了您的问题。

关于javascript - Webpack:找不到 bundle.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29923277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com