From 24c2337466e8e6bb202e746a696f95d65d55da4a Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 6 Jun 2022 15:04:15 -0500 Subject: [PATCH] Use env package details --- nuxt.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nuxt.config.js b/nuxt.config.js index f505bfc..041018e 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -48,7 +48,7 @@ export default { lang: 'en', }, title: 'Does It ARM', - description: pkg.description, + description: process.env.npm_package_description, meta: [ { charset: 'utf-8' }, @@ -59,7 +59,7 @@ export default { { hid: 'description', name: 'description', - content: pkg.description + content: process.env.npm_package_description }, { 'property': 'og:image', @@ -89,7 +89,7 @@ export default { }, { 'property': 'twitter:description', - 'content': pkg.description + 'content': process.env.npm_package_description }, { 'property': 'twitter:url',