Server Side CORS Updates.
This commit is contained in:
@@ -6,6 +6,8 @@ if (process.env.NODE_ENV === "production") {
|
||||
process.env.REACT_APP_AXIOS_BASE_API_URL || "https://api.imex.online/";
|
||||
}
|
||||
|
||||
axios.defaults.withCredentials = true;
|
||||
|
||||
export const axiosAuthInterceptorId = axios.interceptors.request.use(
|
||||
async (config) => {
|
||||
if (!config.headers.Authorization) {
|
||||
|
||||
@@ -36,6 +36,7 @@ const io = new Server(server, {
|
||||
"https://www.imex.online",
|
||||
],
|
||||
methods: ["GET", "POST"],
|
||||
credentials: true,
|
||||
},
|
||||
});
|
||||
exports.io = io;
|
||||
@@ -48,7 +49,7 @@ app.use(bodyParser.json({ limit: "50mb" }));
|
||||
app.use(bodyParser.urlencoded({ limit: "50mb", extended: true }));
|
||||
//app.use(enforce.HTTPS({ trustProtoHeader: true }));
|
||||
app.use(
|
||||
cors()
|
||||
cors({ credentials: true })
|
||||
// cors({
|
||||
// credentials: true,
|
||||
// origin: [
|
||||
|
||||
Reference in New Issue
Block a user