Skip to content

Commit ba2711a

Browse files
committed
fix: edit cors origin compiler
1 parent eabc625 commit ba2711a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
def create_app():
2020
app = Flask(__name__)
2121
app.config.from_envvar('APP_CONFIG_FILE')
22-
cors_origins = re.compile(r"https?://(\w+\.)?uspray\.com")
22+
cors_origins = re.compile(r"https?://(\w+\.)*uspray\.kr")
2323
CORS(app, origins=cors_origins)
2424

2525
# Swagger

0 commit comments

Comments
 (0)