[react-packager] Fix assetRoots when starting in node_modules
This commit is contained in:
parent
0fdf8b4a95
commit
7dc411b162
|
@ -69,7 +69,11 @@ if (options.assetRoots) {
|
|||
options.assetRoots = options.assetRoots.split(',');
|
||||
}
|
||||
} else {
|
||||
options.assetRoots = [path.resolve(__dirname, '..')];
|
||||
if (__dirname.match(/node_modules\/react-native\/packager$/)) {
|
||||
options.assetRoots = [path.resolve(__dirname, '../../..')];
|
||||
} else {
|
||||
options.assetRoots = [path.resolve(__dirname, '..')];
|
||||
}
|
||||
}
|
||||
|
||||
console.log('\n' +
|
||||
|
|
Loading…
Reference in New Issue