-
Notifications
You must be signed in to change notification settings - Fork 7
/
nuxt.config.ts
50 lines (46 loc) · 1.22 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
50
import { defineNuxtConfig } from 'nuxt/config'
export default defineNuxtConfig({
devtools: { enabled: true },
components: true,
debug: true,
ssr: false,
css: [
'bootstrap/dist/css/bootstrap.css',
'~/assets/main.css',
'~/assets/buttons.css',
'@fortawesome/fontawesome-svg-core/styles.css'
],
plugins: [
{ src: '~/plugins/bootstrap.js', mode: 'client'},
{ src: '~/plugins/fontawesome.js', mode: 'client'}
],
app:{
head: {
script: [
{
src: "https://www.googletagmanager.com/gtag/js?id=G-RWYGJG4RC3",
async: true
},
{
innerHTML: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RWYGJG4RC3');
`,
type: 'text/javascript',
}
],
title: 'Free Chess.com Insights',
meta: [
{ charset: 'utf-8' },
{
content: 'chess, chess insights, chess data, chess.com, pgn, win loss, openings, elo, bulk export, data visualization, free'
}
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
],
},
}
})