- add Access-Control response headers
This commit is contained in:
Anonymous275 2023-12-16 14:30:35 +00:00
parent c2f260a86c
commit 9afdfd4d1b

View File

@ -272,6 +272,8 @@ void PreGame(const std::string& GamePath){
void set_headers(httplib::Response& res) {
res.set_header("Access-Control-Allow-Origin", "*");
res.set_header("Access-Control-Request-Method", "POST, OPTIONS, GET");
res.set_header("Access-Control-Request-Headers", "X-API-Version");
}
void StartProxy() {