CORS origin added
Browse files
server.py
CHANGED
|
@@ -9,7 +9,7 @@ import os
|
|
| 9 |
import time
|
| 10 |
|
| 11 |
app = Flask(__name__)
|
| 12 |
-
CORS(app, origins=
|
| 13 |
|
| 14 |
@app.route("/healthz")
|
| 15 |
def health():
|
|
|
|
| 9 |
import time
|
| 10 |
|
| 11 |
app = Flask(__name__)
|
| 12 |
+
CORS(app, origins= ["https://autoencoderkiranfrontend.vercel.app/"])
|
| 13 |
|
| 14 |
@app.route("/healthz")
|
| 15 |
def health():
|