mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-10-18 17:52:25 +00:00
fix: cors in auth_secret_key model (#499)
This commit is contained in:
@@ -11,7 +11,7 @@ app.use(express.json())
|
||||
|
||||
app.all('*', (_, res, next) => {
|
||||
res.header('Access-Control-Allow-Origin', '*')
|
||||
res.header('Access-Control-Allow-Headers', 'Content-Type')
|
||||
res.header('Access-Control-Allow-Headers', 'authorization, Content-Type')
|
||||
res.header('Access-Control-Allow-Methods', '*')
|
||||
next()
|
||||
})
|
||||
|
Reference in New Issue
Block a user