Skip to content

Commit

Permalink
feat: 다크모드 방지 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hryeong66 committed Aug 20, 2024
1 parent 96c6cbd commit f81c147
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ let project = Project.configure(
"CFBundleDevelopmentRegion": "ko_KR",
"CFBundleShortVersionString": "1.1.1",
"CFBundleVersion": "1",
"UILaunchStoryboardName": "launch"
"UILaunchStoryboardName": "launch",
"UIUserInterfaceStyle": "Light" // 다크모드 방지
]),
sources: "Sources/**",
resources: "Resources/**",
Expand Down Expand Up @@ -54,7 +55,8 @@ let project = Project.configure(
product: .app,
bundleId: "ppac.farmeme.App",
infoPlist: .extendingDefault(with: [
"UILaunchStoryboardName": "launch"
"UILaunchStoryboardName": "launch",
"UIUserInterfaceStyle": "Light" // 다크모드 방지
]),
sources: "Sources/**",
resources: "Resources/**",
Expand Down

0 comments on commit f81c147

Please sign in to comment.