서승완

fix: set cors origin allow from all

...@@ -133,8 +133,4 @@ S3_BUCKET = 'khubox-files' ...@@ -133,8 +133,4 @@ S3_BUCKET = 'khubox-files'
133 133
134 # Cors 134 # Cors
135 CORS_ALLOW_CREDENTIALS = True 135 CORS_ALLOW_CREDENTIALS = True
136 -CORS_ORIGIN_WHITELIST = [ 136 +CORS_ORIGIN_ALLOW_ALL = True
137 - 'http://localhost:3000',
138 - 'http://127.0.0.1:3000',
139 - 'https://khubox.khunet.net',
140 -]
......