Files
react-native-pubky/example/react-native.config.js
coreyphillips b03d04ccc4 Add base project
Implement auth method
2024-09-11 22:03:27 -04:00

16 lines
256 B
JavaScript

const path = require('path');
const pkg = require('../package.json');
module.exports = {
project: {
ios: {
automaticPodsInstallation: true,
},
},
dependencies: {
[pkg.name]: {
root: path.join(__dirname, '..'),
},
},
};