Skip to content

Commit 3d9e4db

Browse files
committed
add file:// prefix
1 parent e81b707 commit 3d9e4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows/project.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function generateCertificateItems(
9999
* @type {(projectRoot: string) => Promise<Config>}
100100
*/
101101
export const loadReactNativeConfig = memo((projectRoot) => {
102-
const rncli = resolveCommunityCLI(projectRoot);
102+
const rncli = "file://" + resolveCommunityCLI(projectRoot);
103103
return import(rncli).then(async (cli) => {
104104
const { loadConfig, loadConfigAsync } = cli?.default ?? cli;
105105
if (!loadConfigAsync) {

0 commit comments

Comments
 (0)