-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
49 lines (49 loc) · 1.49 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app:{
head: {
title: 'Volt Auto - Buy or Import Japanese Used Vehicles to Jamaica',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content: 'Buy or Import Japanese Used Vehicles to Jamaica'
}
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/images/favicon.ico' }],
script: [
// Embeds Hubspot LiveChat
{
async: true,
defer: true,
id: "hs-script-loader",
src: "//js-na1.hs-scripts.com/44800253.js"
}
]
}
},
runtimeConfig: {
gtag: process.env.NUXT_GTAG,
},
modules: ['@nuxtjs/fontaine', "@nuxtjs/seo", "nuxt-gtag"],
css: ['~/assets/css/main.css'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
'postcss-import': {}
},
},
site:{
name: 'Volt Auto',
logo: '/voltauto.png',
url: 'https://voltauto.io',
description: 'Buy or Import Japanese Used Vehicles to Jamaica',
defaultLocale: 'en-JM',
},
gtag: {
id: process.env.NUXT_GTAG,
}
})