Skip to content

Commit 9d67605

Browse files
bondzTimer
authored andcommitted
Use custom bit.ly links (#3836)
* change link to advanced deployment * Use custom CRA link for deployment * use custom link for minification failure * update link for deployment * feedback
1 parent 477e060 commit 9d67605

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/react-dev-utils/printBuildError.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = function printBuildError(err) {
3737
} catch (ignored) {
3838
console.log('Failed to minify the bundle.', err);
3939
}
40-
console.log('Read more here: http://bit.ly/2tRViJ9');
40+
console.log('Read more here: http://bit.ly/CRA-build-minify');
4141
} else {
4242
console.log((message || err) + '\n');
4343
}

packages/react-dev-utils/printHostingInstructions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function printHostingInstructions(
3939
console.log();
4040
console.log('Find out more about deployment here:');
4141
console.log();
42-
console.log(` ${chalk.yellow('http://bit.ly/2vY88Kr')}`);
42+
console.log(` ${chalk.yellow('http://bit.ly/CRA-deploy')}`);
4343
console.log();
4444
}
4545

packages/react-scripts/scripts/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ if (process.env.HOST) {
6969
console.log(
7070
`If this was unintentional, check that you haven't mistakenly set it in your shell.`
7171
);
72-
console.log(`Learn more here: ${chalk.yellow('http://bit.ly/2mwWSwH')}`);
72+
console.log(`Learn more here: ${chalk.yellow('http://bit.ly/CRA-advanced-config')}`);
7373
console.log();
7474
}
7575

0 commit comments

Comments
 (0)