Create React App のパスを解決するためにノードの問題が発生しています。
問題:
アセット (chunk.js) ファイルは、絶対パスではなく相対パスに解決されます。
ルート フォルダー (example.com) から Web サイトにアクセスして/games/
URL にアクセスすると、正常に動作しています。ただし、更新すると/games
、URL に追加されます。
例えば:
http://movies-finder.surge.sh/movies/419704
^ ページにアクセスして、ページを更新します。
正しいリンク:
間違ったリンク: (これは、ユーザーがページを更新したときに発生します)
/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"
}
}
サーバー.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
資産がアクセスされているときに遭遇しないようにしたいだけです。