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

标签 javascript node.js reactjs heroku

在 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/

相关文章:

2d - 我需要一个用于 JavaScript 的 2D 骨骼引擎

Javascript 如何通过解构将 promise.spread 语法迁移到异步/等待

node.js - 为 Let's encrypt 设置 certbot 时要选择哪个软件和系统?

node.js - 如何让我的前端应用程序访问我的 Node 服务器 api

javascript - 如何以 HTML 格式打印表格

javascript - 转换 Javascript 日期时出现问题

node.js - 如何将我的 REST API 与我的 Express 网络应用分开?

javascript - Array.prototype.values() 未定义 - 在 NodeJS 环境中使用 Babel 转译 ES6

javascript - 如何将内部 setState 函数重构为静态类方法?

reactjs - Paypal 错误处理。找不到消息 postrobot_method 的消息确认处理程序