chore: initial commit
This commit is contained in:
21
example/react-native.config.js
Normal file
21
example/react-native.config.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const path = require('path');
|
||||
const pkg = require('../package.json');
|
||||
|
||||
module.exports = {
|
||||
project: {
|
||||
ios: {
|
||||
automaticPodsInstallation: true,
|
||||
},
|
||||
},
|
||||
dependencies: {
|
||||
[pkg.name]: {
|
||||
root: path.join(__dirname, '..'),
|
||||
platforms: {
|
||||
// Codegen script incorrectly fails without this
|
||||
// So we explicitly specify the platforms with empty object
|
||||
ios: {},
|
||||
android: {},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user