You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello !
I was hoping to receive help with an issue I am having after deploying my app to Heroku. I built my front end with Heroku and my server side code uses Express and node. When testing locally, I can access a specific route, for example localhost:3000/post and it loads as expected. When I go to my site at https://treasury-of-weary-souls.herokuapp.com/post , the page returns Not Found.
My basic folder setup is like so:
project/
---- app/
-------- src/
---- backend/
-------- index.js
Here's what I have in my server side code:
// GLOBAL VARIABLES
const express = require('express');
const path = require("path");
const bodyParser = require("body-parser");
const morg = require("morgan");
const States = require('./states.js');
const stringify = require("json-stringify-pretty-compact")
const PORT = process.env.PORT || 5001;
const app = express();
// logging for request to the console
app.use(morg("dev"));
// Configure body parser for AJAX requests
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
// Serve up static assets (usually on heroku)
if (process.env.NODE_ENV === "production") {
app.get('/map', (req, res) => {
res.sendFile(path.join(__dirname + '/app/build/index.html'));
});
app.get('/post', (req, res) => {
res.sendFile(path.join(__dirname + '/app/build/index.html'));
});
app.use('/', express.static("app/build"));
app.use(express.static(path.join(__dirname, 'app/build')));
// app.get('/*', function (req, res) {
// res.sendFile(path.join(__dirname, 'build', 'index.html'));
// });
}
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname + '/app/build/index.html'));
});
app.listen(PORT);
console.log(`App listening on ${PORT}`);
The text was updated successfully, but these errors were encountered:
Hello !
I was hoping to receive help with an issue I am having after deploying my app to Heroku. I built my front end with Heroku and my server side code uses Express and node. When testing locally, I can access a specific route, for example localhost:3000/post and it loads as expected. When I go to my site at https://treasury-of-weary-souls.herokuapp.com/post , the page returns Not Found.
My basic folder setup is like so:
project/
---- app/
-------- src/
---- backend/
-------- index.js
Here's what I have in my server side code:
The text was updated successfully, but these errors were encountered: