We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba2711a commit 17ee74fCopy full SHA for 17ee74f
app/__init__.py
@@ -20,7 +20,7 @@ def create_app():
20
app = Flask(__name__)
21
app.config.from_envvar('APP_CONFIG_FILE')
22
cors_origins = re.compile(r"https?://(\w+\.)*uspray\.kr")
23
- CORS(app, origins=cors_origins)
+ CORS(app, origins=[cors_origins, "http://localhost:3000"])
24
25
# Swagger
26
authorizations = {
0 commit comments