feat: Flutter 앱 CORS origin 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 2m46s

- http://127.0.0.1:8080 추가 (Flutter 웹 개발)
- http://192.168.0.202:8080 추가 (Flutter 웹 개발)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 22:11:53 +09:00
parent dbea40d845
commit d5b4bd52ab
2 changed files with 3 additions and 1 deletions

View File

@ -132,7 +132,9 @@ MIDDLEWARE = [
CORS_ALLOWED_ORIGINS = [ CORS_ALLOWED_ORIGINS = [
"http://localhost:3000", "http://localhost:3000",
"http://127.0.0.1:3000", "http://127.0.0.1:3000",
"http://127.0.0.1:8080",
"http://192.168.0.100:3000", "http://192.168.0.100:3000",
"http://192.168.0.202:8080",
"https://demo.test", "https://demo.test",
"http://demo.test", "http://demo.test",
"https://www.demo.test", "https://www.demo.test",

View File

@ -1 +1 @@
v0.0.10 v0.0.11