gpt4 book ai didi

javascript - Heroku - 部署 React/Express 应用程序并在请求 chunk.js 文件时在控制台中获取 'Failed to load resource'

转载 作者:行者123 更新时间:2023-11-30 19:26:18 25 4
gpt4 key购买 nike

在 Heroku 上构建和部署我的 React 应用程序后,我在控制台中收到这些错误。

Refused to apply style from 'https://radiant-tor-66940.herokuapp.com/index.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
Failed to load resource: the server responded with a status of 404 (Not Found) main.3174e036.chunk.js:1
Failed to load resource: the server responded with a status of 404 (Not Found) 1.b1e0c624.chunk.js:1
Failed to load resource: the server responded with a status of 404 (Not Found) main.3174e036.chunk.js:1
Failed to load resource: the server responded with a status of 404 (Not Found) manifest.json:1
Manifest: Line: 1, column: 1, Unexpected token. manifest.json:1

index.js 文件位于我的 Heroku 服务器上的 /client/build/ 中。这是我的 Express 服务器发送的文件。服务器正在发送此 index.html 文件,但文件本身未找到所需的资源。

这会导致加载空白应用程序的问题。由于某种原因,index.html 没有在 /client/build/static/js 中找到 chunk.js 文件。它们肯定在那里,我可以通过 heroku run bash 确认并检查目录。

当我在浏览器中检查 index.html 文档时,我可以在底部看到脚本标记调用 /中的 chunk.js 文件的位置静态/js:

enter image description here

这是应用程序的根 package.json 的样子:

  "scripts": {
"test": "jest",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"engines": {
"node": "~9.10.1",
"npm": "~5.6.0"
}

这是位于 /client 中的 React 应用程序的 package.json 的样子:

{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.11",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:8000/"
}

这是 Heroku 构建后的文件结构:

  • 第一张图片:/client目录
  • 第二张图片:/client/build 目录
  • 第三张图片:/client/build/static/js 目录

enter image description here enter image description here enter image description here

最佳答案

问题实际上出在我的 server.js 文件中,我没有包含在这篇文章中。

最初是 express.static(path_join(__dirname, '/client/build'))

它需要是:express.static(path_join(__dirname, '../client/build'))

这是因为我的 server.js 文件位于 /server 并且它试图在里面找到 /client/build /server 而不是 Heroku 上的根应用程序目录。

关于javascript - Heroku - 部署 React/Express 应用程序并在请求 chunk.js 文件时在控制台中获取 'Failed to load resource',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56875718/

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