gpt4 book ai didi

javascript - 为什么 localhost 找不到bundle.js,即使它位于 public 目录中?

转载 作者:太空宇宙 更新时间:2023-11-04 01:26:31 25 4
gpt4 key购买 nike

我正在尝试创建一个已为我创建了 server.coffee 文件的 React 应用程序。我设置了 babel 和 webpack,并创建了 index.js 和 app.js 文件。我在我的index.html 上添加了bundle.js 的脚本标记。当我在本地主机上运行服务器时,我不断收到错误消息:无法加载资源:服务器响应bundle.js:1的状态为404(未找到)。我在本地目录中看到该文件。我错过了什么?

HTML 文件:

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="/static/base.css" rel="stylesheet">
<script defer src="./bundle.js"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>

我的网页包:

module.exports = {
entry: ['@babel/polyfill','./client/index.js'],
mode: 'development',
output: {
path: __dirname,
filename: './public/bundle.js'
},
devtool: 'source-maps',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
}
}

我的.babelrc:

{
"presets": ["@babel/preset-react", "@babel/preset-env"]
}

我的目录结构:

client
|-index.js
|-App.js
public
|-bundle.js
|-index.html
.babelrc
package.json
server.coffee
webpack.config.js

这是我正在运行的脚本:

  "scripts": {
"start": "coffee server.coffee",
"start-dev": "webpack -w & coffee server.coffee"
}

最后这是我的 server.coffee 文件中的 app.get:

# Default public
app.get '/', (req, res) ->
res.sendFile __dirname + '/public/index.html'

这又是我遇到的错误。获取http://localhost:3000/bundle.js net::ERR_ABORTED 404(未找到)

终端上没有编译错误或任何内容。仅控制台错误。任何帮助表示赞赏!我知道如何完成项目的其余部分,但如果不运行 React,这是不可能的。

最佳答案

您需要在 app.get() 路由之前使用 express.static()

app.use(express.static('public'))

或者在 Coffeescript 中

app.use express.static 'public'

关于javascript - 为什么 localhost 找不到bundle.js,即使它位于 public 目录中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57341472/

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