@openstack_dev/gatsby-theme-marketing-oif-core 1.0.22 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gatsby-config.js +3 -0
- package/package.json +1 -1
package/gatsby-config.js
CHANGED
|
@@ -20,6 +20,8 @@ try {
|
|
|
20
20
|
const title = siteSettings?.siteMetadata?.title || process.env.GATSBY_METADATA_TITLE;
|
|
21
21
|
const description = siteSettings?.siteMetadata?.description
|
|
22
22
|
|| process.env.GATSBY_METADATA_DESCRIPTION;
|
|
23
|
+
const siteUrl = siteSettings?.siteMetadata?.siteUrl || process.env.GATSBY_METADATA_SITE_URL;
|
|
24
|
+
|
|
23
25
|
const faviconAsset = siteSettings?.favicon?.asset;
|
|
24
26
|
|
|
25
27
|
const manifestPlugin = faviconAsset
|
|
@@ -248,6 +250,7 @@ module.exports = {
|
|
|
248
250
|
siteMetadata: {
|
|
249
251
|
title,
|
|
250
252
|
description,
|
|
253
|
+
siteUrl,
|
|
251
254
|
},
|
|
252
255
|
plugins,
|
|
253
256
|
flags: {
|