4

我在解决我的 Create React App 路径时遇到了节点问题。

问题:

资产(chunk.js)文件解析为相对路径而不是绝对路径。

当我从根文件夹(example.com)访问网站并点击/games/URL 时,它工作正常。但是,如果我刷新,它会附加/games到 URL 中。

例如:

http://movies-finder.surge.sh/movies/419704

^ 访问页面并刷新页面。

正确链接:

https://example.com/static/js/main.b9f8ee12.chunk.js

不正确的链接:( 当用户刷新页面时会发生这种情况)

https://example.com/games/static/js/main.e50e1c49.chunk.js

我只是想确保,/games当我的资产被访问时,我不会遇到。

(不需要/games/)因此坏了:(

文件夹结构:

-/
 - server.js
 - public
    - index.html
 - package.json
 - Build

包.json:

{
  "name": "games-finder",
  "version": "0.1.2",
  "private": true,
  "homepage": ".",
  "proxy": "http://localhost:3001/",
  "dependencies": {
    // dependencies
  },
  "devDependencies": {
    // dev dependencies for the project.
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "server": "node-env-run server.js --exec nodemon | pino-colada",
    "dev": "run-p server start",
    "heroku-dev": "run-p server start"
  }
}

server.js:

const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const port = process.env.PORT || 3001;
const path = require('path');
app.use(bodyParser.urlencoded({ extended: false }));
app.use(pino);

app.get('/api/greeting', (req, res) => {
  const name = req.query.name || 'World';
  res.send(JSON.stringify({ greeting: `Hello ${name}!` }));
});

if (process.env.NODE_ENV === 'production') {

  // Serve any static files
  app.use(express.static('build'));

  // Handle React routing, return all requests to React app
  app.get('*', (req, res) => {
   res.sendFile(path.resolve(__dirname, 'build', 'index.html'));
  });
}

app.listen(port, () => console.log(`Listening on port ${port}`));

请帮我确定问题。我花了几天时间试图调试这个问题。

我只是想确保,/games当我的资产被访问时,我不会遇到。

4

1 回答 1

2

发生这种情况是因为"homepage": "."在您的 package.json 中,请尝试删除此行。

详细说明在这里https://stackoverflow.com/a/58508562/9173730

于 2020-06-09T08:25:21.243 回答