chore: include privacy policy in app

This commit is contained in:
Lei Nelissen
2023-06-13 23:07:40 +02:00
parent 9abe37df70
commit 6c9962f85a
7 changed files with 73 additions and 6 deletions

View File

@@ -13,11 +13,27 @@ module.exports = (async () => {
} = await getDefaultConfig();
return {
transformer: {
babelTransformerPath: require.resolve('react-native-svg-transformer')
babelTransformerPath: require.resolve('./scripts/transformer.js'),
},
resolver: {
assetExts: assetExts.filter(ext => ext !== 'svg'),
sourceExts: [...sourceExts, 'svg']
}
assetExts: [
...assetExts.filter((ext) => ext !== 'svg'),
],
sourceExts: [
...sourceExts,
'svg',
'md'
]
},
plugins: [
['content-transformer', {
transformers: [
{
file: /\.md$/,
format: 'string'
}
],
}],
]
};
})();