diff --git a/recipes/drupal_cms_starter/content/menu_link_content/main-10-home.yml b/recipes/drupal_cms_starter/content/menu_link_content/main-10-home.yml
new file mode 100644
index 0000000000000000000000000000000000000000..78f97f0b04025f72eeaaebfefb70367b435866f2
--- /dev/null
+++ b/recipes/drupal_cms_starter/content/menu_link_content/main-10-home.yml
@@ -0,0 +1,36 @@
+_meta:
+  version: '1.0'
+  entity_type: menu_link_content
+  uuid: a46bbd2b-96ab-4c8a-b5ce-e19797d8f9b0
+  bundle: menu_link_content
+  default_langcode: en
+default:
+  enabled:
+    -
+      value: true
+  title:
+    -
+      value: 'Home'
+  menu_name:
+    -
+      value: main
+  link:
+    -
+      uri: 'internal:/'
+      title: ''
+      options: {  }
+  external:
+    -
+      value: false
+  rediscover:
+    -
+      value: true
+  weight:
+    -
+      value: 10
+  expanded:
+    -
+      value: false
+  revision_translation_affected:
+    -
+      value: true
diff --git a/recipes/drupal_cms_starter/tests/src/FunctionalJavaScript/PerformanceTest.php b/recipes/drupal_cms_starter/tests/src/FunctionalJavaScript/PerformanceTest.php
index 3fc1f1b76dea1514e3ea70e9c9164e556b8d7d6f..80f6700c0b8402d7291d1001305496386e702c08 100644
--- a/recipes/drupal_cms_starter/tests/src/FunctionalJavaScript/PerformanceTest.php
+++ b/recipes/drupal_cms_starter/tests/src/FunctionalJavaScript/PerformanceTest.php
@@ -65,8 +65,8 @@ class PerformanceTest extends PerformanceTestBase {
     // If there are small changes in the below limits, e.g. under 5kb, the
     // ceiling can be raised without any investigation. However large increases
     // indicate a large library is newly loaded for anonymous users.
-    $this->assertLessThan(75000, $performance_data->getStylesheetBytes());
-    $this->assertLessThan(16500, $performance_data->getScriptBytes());
+    $this->assertLessThan(84000, $performance_data->getStylesheetBytes());
+    $this->assertLessThan(24000, $performance_data->getScriptBytes());
   }
 
   /**
@@ -125,7 +125,7 @@ class PerformanceTest extends PerformanceTestBase {
     // ceiling can be raised without any investigation. However large increases
     // indicate a large library is newly loaded for authenticated users.
     $this->assertLessThan(350000, $performance_data->getStylesheetBytes());
-    $this->assertLessThan(320000, $performance_data->getScriptBytes());
+    $this->assertLessThan(330000, $performance_data->getScriptBytes());
   }
 
 }