From 5cd3b0ba4422c9af5feb58be37ee153d98264512 Mon Sep 17 00:00:00 2001 From: alxizr <39420735+alxizr@users.noreply.github.com> Date: Mon, 10 Oct 2022 17:35:16 +0300 Subject: [PATCH] Prioritizing tags for SEO by default I was wondering if we can make this flag **true** by default when using the package. Can solve issues for newcomers to SEO, just like me, that we are not aware of actually --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 26eb1a71..9fc56e01 100644 --- a/src/index.js +++ b/src/index.js @@ -57,7 +57,7 @@ export class Helmet extends Component { static defaultProps = { defer: true, encodeSpecialCharacters: true, - prioritizeSeoTags: false, + prioritizeSeoTags: true, }; static displayName = 'Helmet';