Skip to content

Commit

Permalink
Merge pull request #2 from rustom/Praneeth'sNuts
Browse files Browse the repository at this point in the history
Add a lot of shit i forgot what
  • Loading branch information
VishruthR authored Feb 25, 2023
2 parents 4a0415b + 890d17b commit c8f9cfb
Show file tree
Hide file tree
Showing 10 changed files with 1,523 additions and 104 deletions.
16 changes: 16 additions & 0 deletions metro.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const { getDefaultConfig } = require("metro-config");

module.exports = (async () => {
const {
resolver: { sourceExts, assetExts },
} = await getDefaultConfig();
return {
transformer: {
babelTransformerPath: require.resolve("react-native-svg-transformer"),
},
resolver: {
assetExts: assetExts.filter((ext) => ext !== "svg"),
sourceExts: [...sourceExts, "svg"],
},
};
})();
Loading

0 comments on commit c8f9cfb

Please sign in to comment.