-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
48 lines (47 loc) · 1.12 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
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/google-fonts"],
plugins: [{ src: "~/plugins/vercel.ts", mode: "client" }],
googleFonts: {
families: {
Karla: true,
Inconsolata: true,
},
},
app: {
head: {
meta: [
{
name: "viewport",
content: "width=device-width, initial-scale=1",
},
{
charset: "utf-8",
},
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{
rel: "canonical",
href: "https://moncefhilali.com",
},
],
style: [],
script: [
{
src: "https://www.googletagmanager.com/gtag/js?id=G-44R2GWJ5JZ",
async: true,
},
{
type: "text/javascript",
children: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-44R2GWJ5JZ');`,
},
],
noscript: [],
},
},
});