@zyrab/domo-ssg 0.3.0 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyrab/domo-ssg",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "A Static Site Generator (SSG) for Domo-based projects.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -48,7 +48,8 @@ export async function handleRoute({ path, props, component, scripts, styles, fon
48
48
  const html = await renderLayout(content, {
49
49
  title: meta.title || "",
50
50
  description: meta.description || "",
51
- descriptionOG: meta.descriptionOG,
51
+ ogDescription: meta.ogDescription,
52
+ ogImage: meta.ogImage || "",
52
53
  canonical: meta.canonical,
53
54
  type: meta.type,
54
55
  scripts: scriptPaths,