-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
46 lines (45 loc) · 1.21 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
import path from "path";
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: "Bech32 Wallet Address Prefix Web Converter",
meta: [
{
name: "og:title",
content: "Bech32 Wallet Address Prefix Web Converter",
},
{
name: "description",
content:
"Convert between Cosmos(cosmos1), Ethereum(0x) and different cosmos-based chain using bech32 address prefixes.",
},
],
link: [
{
rel: "preload",
href: "https://www.googletagmanager.com/gtag/js?id=G-J481P5HG5T",
as: "script",
},
],
},
},
modules: ["nuxt-gtag", "@vueuse/nuxt", "@nuxtjs/tailwindcss"],
gtag: {
id: "G-J481P5HG5T",
},
plugins: ["~/plugins/node.client.ts"],
alias: {
"readable-stream": path.resolve(__dirname, "node_modules/readable-stream"),
"process/": path.resolve(
__dirname,
"node_modules/unenv/runtime/node/process"
),
events: path.resolve(__dirname, "node_modules/events"),
},
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
experimental: {
clientNodeCompat: true,
},
});