-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* done seekHelp midfi * moved caret + made button collapsable * styling changes * styling progress * done seekHelp midfi * styling progress * oh my god my hair is falling out * styling pt 1 * styling pt 1 * styling pt 1 --------- Co-authored-by: philipye314 <philipye314@gmail.com>
- Loading branch information
1 parent
e9c1d1f
commit 7ace705
Showing
21 changed files
with
1,280 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const path = require('path'); | ||
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config'); | ||
|
||
const defaultConfig = getDefaultConfig(__dirname); | ||
const { | ||
resolver: { sourceExts, assetExts }, | ||
} = defaultConfig; | ||
|
||
/** | ||
* Metro configuration | ||
* https://facebook.github.io/metro/docs/configuration | ||
* | ||
* @type {import('metro-config').MetroConfig} | ||
*/ | ||
const config = { | ||
transformer: { | ||
babelTransformerPath: require.resolve('react-native-svg-transformer'), | ||
}, | ||
resolver: { | ||
assetExts: assetExts.filter(ext => ext !== 'svg'), | ||
sourceExts: [...sourceExts, 'svg'], | ||
//resolverMainFields: ['sbmodern', 'react-native', 'browser', 'main'], | ||
}, | ||
watchFolders: [path.resolve(__dirname, '../')], | ||
}; | ||
|
||
module.exports = mergeConfig(defaultConfig, config); |
Oops, something went wrong.