Skip to content

Commit

Permalink
🐛 fix(api, batch, search): korean encoding not working on Safari brow…
Browse files Browse the repository at this point in the history
…ser (#495)

* 🐛 fix(api): korean encoding not working on Safari browser

* 🐛 fix(batch): korean encoding not working on Safari browser

* 🐛 fix(search): korean encoding not working on Safari browser

* 🐛 fix(search): korean encoding not working on Safari browser
  • Loading branch information
siyeonSon authored Jul 6, 2024
1 parent b1425a0 commit e33ef31
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
7 changes: 6 additions & 1 deletion backend/streetdrop-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ server:
compression:
enabled: true
mime-types: text/html,text/plain,text/css,application/javascript,application/json
min-response-size: 500
min-response-size: 500
servlet:
encoding:
charset: UTF-8
enabled: true
force: true
8 changes: 7 additions & 1 deletion backend/streetdrop-batch/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ management:
logging:
level:
root: INFO
org.springframework.web: INFO
org.springframework.web: INFO
server:
servlet:
encoding:
charset: UTF-8
enabled: true
force: true
10 changes: 7 additions & 3 deletions backend/streetdrop-search/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ management:
web:
exposure:
include: prometheus

logging:
level:
root: INFO
org.springframework.web: INFO

springdoc:
swagger-ui:
path: /swagger
path: /swagger
server:
servlet:
encoding:
charset: UTF-8
enabled: true
force: true

0 comments on commit e33ef31

Please sign in to comment.