-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
27 lines (27 loc) · 1.07 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: 'CBOR to JSON Online Converter',
meta: [
{ name: 'og:title', content: 'CBOR to JSON Online Converter' },
{ name: 'description', content: 'Easily convert data between CBOR (Concise Binary Object Representation) and JSON (JavaScript Object Notation) formats with this online web decoder.' }
],
link: [
{ rel: 'preload', as: 'script', href: 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5384552213891537', crossorigin: 'anonymous' },
{ rel: 'preload', as: 'script', href: 'https://www.googletagmanager.com/gtag/js?id=G-PG6KXFFZPF' },
],
script: [
{ src: 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5384552213891537', async: true, crossorigin: 'anonymous', body: true },
],
},
},
modules: ["nuxt-gtag"],
gtag: {
id: "G-PG6KXFFZPF",
},
devtools: { enabled: true },
experimental: {
clientNodeCompat: true,
},
});