Skip to content

Commit

Permalink
Merge branch 'develop' into feat/api
Browse files Browse the repository at this point in the history
  • Loading branch information
gw-lim committed Oct 3, 2024
2 parents 8c38480 + 428e8a1 commit 38539d1
Show file tree
Hide file tree
Showing 9 changed files with 118 additions and 69 deletions.
Binary file not shown.
9 changes: 9 additions & 0 deletions android/link-assets-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"migIndex": 1,
"data": [
{
"path": "src/assets/fonts/PretendardVariable.ttf",
"sha1": "89b05a2f18c76f8deb577505d48237127ccfc908"
}
]
}
21 changes: 11 additions & 10 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@ module.exports = {
[
'module-resolver',
{
root: ['./src'],
alias: {
'@/navigation': './src/navigation',
'@/pages': './src/pages',
'@/components': './src/pages',
'@/features': './src/pages',
'@/services': './src/pages',
'@/utils': './src/pages',
'@/hooks': './src/pages',
'@/store': './src/pages',
'@/types': './src/pages',
'@/constants': './src/pages',
'@/styles': './src/pages',
'@/public': './src/pages',
'@/components': './src/components',
'@/features': './src/features',
'@/services': './src/services',
'@/utils': './src/utils',
'@/hooks': './src/hooks',
'@/store': './src/store',
'@/types': './src/types',
'@/constants': './src/constants',
'@/styles': './src/styles',
'@/assets': './assets',
},
},
],
Expand Down
9 changes: 9 additions & 0 deletions ios/link-assets-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"migIndex": 1,
"data": [
{
"path": "src/assets/fonts/PretendardVariable.ttf",
"sha1": "89b05a2f18c76f8deb577505d48237127ccfc908"
}
]
}
125 changes: 69 additions & 56 deletions ios/matchoom.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions ios/matchoom/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<!-- Do not change NSAllowsArbitraryLoads to true, or you will risk app rejection! -->
<key>NSAllowsArbitraryLoads</key>
<false/>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<string/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
Expand All @@ -48,5 +47,9 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIAppFonts</key>
<array>
<string>PretendardVariable.ttf</string>
</array>
</dict>
</plist>
3 changes: 3 additions & 0 deletions react-native.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
assets: ['./src/assets/fonts/'],
};
Binary file added src/assets/fonts/PretendardVariable.ttf
Binary file not shown.
13 changes: 12 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ module.exports = {
'./src/features/**/*.{js,ts,jsx,tsx}',
'./src/hooks/**/*.{js,ts,jsx,tsx}',
],
theme: {},
theme: {
extend: {
fontFamily: {
sans: ['Pretendard', 'Arial'],
},
colors: {
green: '#74EFC2',
blue: '#4174F7',
background: '#121212',
},
},
},
plugins: [],
};

0 comments on commit 38539d1

Please sign in to comment.