Я пытаюсь развернуть свое приложение реакции локально, используя ответную сборку. Прямо сейчас На моем сервере. js У меня есть
const port = process.env.PORT || 5010;
app.use(express.static(path.join(__dirname, 'build')));
app.get('/*', (req, res) => {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.listen(port, () => console.log(`Listening on port ${port}`));
Моя текущая структура файла как таковая
В моем пакет. json в скриптах, которые у меня есть:
"scripts": {
"server": "node server.js",
"devstart": "nodemon server.js"
},
Я получаю следующую ошибку и не уверен, как это исправить. Я хочу запустить все приложение локально через порт 5010 в качестве SPA (не нужно запускать реагирующие серверы и просто отображать ресурсы c, просто все запускать с сервера), прежде чем развернуть его на Nginx.
Listening on port 5010
(node:32313) UnhandledPromiseRejectionWarning: Error: Request failed with status code 404
at createError (/home/VH5APP/node_modules/axios/lib/core/createError.js:16:15)
at settle (/home/VH5APP/node_modules/axios/lib/core/settle.js:17:12)
at IncomingMessage.handleStreamEnd (/home/VH5APP/node_modules/axios/lib/adapters/http.js:236:11)
at emitNone (events.js:111:20)
at IncomingMessage.emit (events.js:208:7)
at endReadableNT (_stream_readable.js:1064:12)
at _combinedTickCallback (internal/process/next_tick.js:138:11)
at process._tickCallback (internal/process/next_tick.js:180:9)
(node:32313) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)
(node:32313) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Executing (default): SELECT 1+1 AS result