-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
71 lines (71 loc) · 2.2 KB
/
nuxt.config.js
File metadata and controls
71 lines (71 loc) · 2.2 KB
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
70
71
/* eslint-disable */
export default {
ssr: false,
target: 'static',
loading: false,
head: {
title: 'HM Dashboard',
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Helium Miner Dashboard' },
{
hid: 'keywords',
name: 'keywords',
content: 'HM Dashboard, HNT, HNT-Miner, HNT Coin, Helium Coin, Bobcat Miner, Nebra Miner, Crypto, Crypto Currency, mwpereira'
},
{ hid: 'og:title', property: 'og:title', content: 'HM Dashboard' },
{ hid: 'og:description', property: 'og:description', content: 'Helium Miner Dashboard' },
{ hid: 'og:image', property: 'og:image', content: '/site.png' },
{ hid: 'og:site_name', property: 'og:site_name', content: 'HM Dashboard' },
{ name: 'format-detection', content: 'telephone=no' },
{ name: 'msapplication', content: '#da532c' },
{ name: 'theme-color', content: '#ffffff' }
],
link: [
{ rel: 'apple-touch-icon', size: '180x180', href: '/icons/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', size: '32x32', href: '/icons/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', size: '16x16', href: '/icons/favicon-16x16.png' },
{ rel: 'manifest', href: '/icons/site.webmanifest' },
{ rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', content: '#5bbad5' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com' },
{ rel: 'stylesheet', href: 'https://use.fontawesome.com/releases/v5.15.3/css/all.css' }
]
},
css: [
'assets/scss/main.scss'
],
plugins: [],
components: true,
buildModules: [
'@nuxt/typescript-build'
],
modules: [
'nuxt-buefy',
'@nuxtjs/google-gtag',
'@nuxtjs/style-resources'
],
'google-gtag': {
id: 'G-REEZCVN09K',
config: {
anonymize_ip: true,
send_page_view: false,
linker: {
domains: ['hmdashboard.mwpereira.ca']
}
}
},
build: {},
generate: { fallback: true },
server: {
port: 8080
},
env: {
coinGeckoAPI: process.env.coinGeckoAPI || 'https://api.coingecko.com/api/v3/coins/helium',
heliumAPI: process.env.HELIUM_API || 'https://api.helium.io/v1/'
}
};