diff --git a/components/Hero.vue b/components/Hero.vue index 2427475..149c1b6 100644 --- a/components/Hero.vue +++ b/components/Hero.vue @@ -24,7 +24,7 @@ , -
{{ getDate(story.last_updated_date) }}

+
{{ getDate(story.published_date) }}

{{ story.excerpt }}
diff --git a/components/MoreStories.vue b/components/MoreStories.vue index f310901..46d7654 100644 --- a/components/MoreStories.vue +++ b/components/MoreStories.vue @@ -30,7 +30,7 @@ , -
{{ getDate(story.last_updated_date) }}

+
{{ getDate(story.published_date) }}

diff --git a/plugins/ga.js b/plugins/ga.js index 321e0fa..2c0ccf4 100644 --- a/plugins/ga.js +++ b/plugins/ga.js @@ -4,7 +4,7 @@ export default ({ app }) => { /* ** Only run on client-side and only in production mode */ - if (process.env.NODE_ENV !== 'production') return + // if (process.env.NODE_ENV !== 'production') return /* ** Include Google Analytics Script */