From 1440167443e7cbf7354d0bade141fb4afab8610e Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 12 Feb 2022 13:14:53 -0600 Subject: [PATCH] Add www.googletagmanager.com preconnect --- nuxt.config.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/nuxt.config.js b/nuxt.config.js index e7adf87..1333ed7 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -48,6 +48,7 @@ export default { }, title: 'Does It ARM', description: pkg.description, + meta: [ { charset: 'utf-8' }, { @@ -98,7 +99,20 @@ export default { 'content': `${process.env.URL}/images/mark.png` } ], - link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }] + link: [ + // Favicon + { + rel: 'icon', + type: 'image/x-icon', + href: '/favicon.ico' + }, + + // Gtag Preconnect + { + rel: 'preconnect', + href: 'https://www.googletagmanager.com' + }, + ], }, /*