Austin,
I suspect this is all around the CORS errors.
I recall Liana 6 has changed where the CORS middleware is being mounted and who’s responsibility is to do that (it used to be liana express, but I believe now it’s on the developer side).
Another hint that his is the problem is that you said it’s on Production and not your local env.
Can you find in your code something similar to this:
app.use(
cors({
origin: /forestadmin\.com$/,
allowedHeaders: ['Authorization', 'X-Requested-With', 'Content-Type'],
maxAge: 86400, // NOTICE: 1 day
credentials: true,
})
);
This should come before you mount the forest middleware which looks like this:
app.use('/forest', (request, response, next) => {
...
Also not that to use cors
you need to require it first:
const cors = require('cors');