Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {

return logManualInstallation({
healthcheck: 'Android SDK',
url: 'https://facebook.github.io/react-native/docs/getting-started',
url: 'https://reactnative.dev/docs/getting-started',
});
},
} as HealthCheckInterface;
14 changes: 7 additions & 7 deletions packages/cli/src/commands/server/middleware/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>React Native</title>
</head>
<body>
<p>React Native packager is running.</p>
<p><a href="http://facebook.github.io/react-native/">Visit documentation</a></p>
</body>
<head>
<title>React Native</title>
</head>
<body>
<p>React Native packager is running.</p>
<p><a href="https://reactnative.dev">Visit documentation</a></p>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function runOnAllDevices(
function createInstallError(error: Error & {stderr: string}) {
const stderr = (error.stderr || '').toString();
const docs =
'https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment';
'https://reactnative.dev/docs/getting-started.html#android-development-environment';
let message = `Make sure you have the Android development environment set up: ${chalk.underline.dim(
docs,
)}`;
Expand Down