You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set project sourceDir in react-native.config.js, but it's not in use.
Here is my react-native.conf.js module.exports = { project: { ios: { sourceDir: "./apps/mobile/ios", }, android: { sourceDir: "./apps/mobile/android", } }, assets:[ "./assets/fonts" ] }
now it just seek root path ./ios and ./android node_modules\react-native-asset\lib\get-config.js const iosPath = path.resolve(rootPath, 'ios'); const androidPath = path.resolve(rootPath, 'android');
The text was updated successfully, but these errors were encountered:
I set project sourceDir in
react-native.config.js
, but it's not in use.Here is my react-native.conf.js
module.exports = { project: { ios: { sourceDir: "./apps/mobile/ios", }, android: { sourceDir: "./apps/mobile/android", } }, assets:[ "./assets/fonts" ] }
now it just seek root path
./ios
and./android
node_modules\react-native-asset\lib\get-config.js
const iosPath = path.resolve(rootPath, 'ios'); const androidPath = path.resolve(rootPath, 'android');
The text was updated successfully, but these errors were encountered: