mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 21:58:54 +00:00
19 lines
313 B
JavaScript
19 lines
313 B
JavaScript
const path = require("node:path");
|
|
const pkg = require("../package.json");
|
|
|
|
/**
|
|
* @type {import('@react-native-community/cli-types').Config}
|
|
*/
|
|
module.exports = {
|
|
project: {
|
|
ios: {
|
|
automaticPodsInstallation: true,
|
|
},
|
|
},
|
|
dependencies: {
|
|
[pkg.name]: {
|
|
root: path.join(__dirname, ".."),
|
|
},
|
|
},
|
|
};
|