generated from Destiner/starter-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnuxt.config.ts
69 lines (61 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
export default defineNuxtConfig({
devtools: { enabled: true },
imports: {
autoImport: false,
},
future: {
compatibilityVersion: 4,
},
devServer: {
port: 5173,
},
telemetry: false,
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'alternate icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'apple-touch-icon',
href: '/apple-touch-icon.png',
sizes: '180x180',
},
],
title: 'ContractScan',
meta: [
{ name: 'title', content: 'ContractScan' },
{
name: 'description',
content: 'Search deployed contracts across 100+ EVM chains',
},
{ property: 'og:image', content: 'https://contractscan.xyz/api/og' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://contractscan.xyz' },
{ property: 'og:title', content: 'ContractScan' },
{
property: 'og:description',
content: 'Search deployed contracts across 100+ EVM chains',
},
{
property: 'twitter:image',
content: 'https://contractscan.xyz/api/og',
},
{ property: 'twitter:card', content: 'summary_large_image' },
{ property: 'twitter:url', content: 'https://contractscan.xyz' },
{ property: 'twitter:title', content: 'ContractScan' },
{
property: 'twitter:description',
content: 'Search deployed contracts across 100+ EVM chains',
},
],
script: [
{ async: true, src: 'https://cdn.metrical.xyz/script.js' },
{ children: 'window.metrical = { "app": "NHI_v97CY"}' },
],
},
},
modules: ['@nuxt/eslint'],
compatibilityDate: '2024-09-14',
});