<@!457661396717666304> try to change the CORS bloc...
# support-questions-legacy
r
@User try to change the CORS block to:
Copy code
app.use(
  cors({
    origin: "http://localhost:3000",
    allowedHeaders: ["content-type", ...supertokens.getAllCORSHeaders()],
    credentials: true,
    methods: ["GET", "PUT", "POST", "DELETE"],
  }),
)
Basically added the
methods
key as well.