forked from Checkmarx/cuteboi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
42 lines (42 loc) · 1.34 KB
/
nuxt.config.js
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
export default {
server: {
host: '0'
},
router: {
base: '/cuteboi/'
},
ssr: false,
target: 'static',
head: {
title: 'CuteBoi Tracker',
htmlAttrs: {
lang: 'en'
},
meta: [
{charset: 'utf-8'},
{property: 'og:title', content: 'CuteBoi Tracker'},
{property: 'twitter:title', content: 'CuteBoi Tracker'},
{property: 'og:description', content: 'Tracks software supply chain threat actor which has published 550 malicious packages'},
{property: 'twitter:description', content: 'Tracks software supply chain threat actor which has published 550 malicious packages'},
{property: 'og:image', content: 'https://user-images.githubusercontent.com/1287098/176996895-eff73dce-13c2-4827-8e76-ada110406cc5.png'},
{property: 'twitter:image', content: 'https://user-images.githubusercontent.com/1287098/176996895-eff73dce-13c2-4827-8e76-ada110406cc5.png'},
{name: 'viewport', content: 'width=device-width,initial-scale=1.0'},
{"http-equiv": 'X-UA-Compatible', content: 'IE=edge'},
{hid: 'description', name: 'description', content: ''},
],
link: [
{rel: 'icon', type: 'image/x-icon', href: '/favicon.svg'}
]
},
css: [],
plugins: [],
components: true,
buildModules: [],
modules: [
'@nuxtjs/axios',
],
axios: {
baseURL: '/',
},
build: {}
}