From b1e756f2d3feaaec8e7c8d277b4ad7d0f2e3c9db Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 6 Jun 2022 15:54:59 -0500 Subject: [PATCH] Fix description undefined --- nuxt.config.js | 4 ++-- package.json | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/nuxt.config.js b/nuxt.config.js index c128d86..0c38eb3 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -48,7 +48,7 @@ export default { lang: 'en', }, title: 'Does It ARM', - description: process.env.npm_package_description, + description: process.env.npm_package_config_verbiage_description, meta: [ { charset: 'utf-8' }, @@ -59,7 +59,7 @@ export default { { hid: 'description', name: 'description', - content: process.env.npm_package_description + content: process.env.npm_package_config_verbiage_description }, { 'property': 'og:image', diff --git a/package.json b/package.json index f7ce47d..a6d165c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "doesitarm", "version": "1.0.0", - "description": "Find out the latest app support for Apple Silicon and the $npm_package_config_verbiage_processors Processors", + "description": "Find out the latest app support for Apple Silicon and the Apple M2 and M1 Ultra Processors", "author": "Sam Carlton", "private": true, "ava": { @@ -12,7 +12,8 @@ "config": { "verbiage": { "processors": "Apple M2 and M1 Ultra", - "macs": "Apple M2 or M1 Ultra Mac" + "macs": "Apple M2 or M1 Ultra Mac", + "description": "Find out the latest app support for Apple Silicon and the Apple M2 and M1 Ultra Processors" } }, "scripts": {