-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
55 lines (55 loc) · 2 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: false },
modules: ['nuxt-simple-css', '@nuxtjs/plausible', 'nuxt-mongodb'],
nuxtSimpleCSS: {
accent: '#000',
},
plausible: {
domain: '301redirect.to',
},
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
htmlAttrs: {
lang: 'en',
},
meta: [
{
name: 'description',
content: 'Create free 301 redirects for your websites. No login required & open source.',
},
{ property: 'title', content: '301 Redirect Tool' },
{
property: 'description',
content: 'Create free 301 redirects for your websites. No login required & open source.',
},
{ property: 'og:title', content: '301 Redirect Tool' },
{ property: 'og:image', content: 'https://301redirect.to/images/og.jpg' },
{ property: 'og:image:alt', content: '301 Redirect Tool' },
{
property: 'og:description',
content: 'Create free 301 redirects for your websites. No login required & open source.',
},
{ property: 'og:url', content: 'https://301redirect.to/images/og.jpg' },
{ property: 'og:type', content: 'website' },
{ name: 'twitter:title', content: '301 Redirect Tool' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:creator', content: '@timb03' },
{ name: 'twitter:image', content: 'https://301redirect.to/images/og.jpg' },
{
name: 'twitter:description',
content: 'Create free 301 redirects for your websites. No login required & open source.',
},
],
link: [
{
rel: 'icon',
type: 'image/svg+xml',
href: 'data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🔁</text></svg>',
},
],
},
},
})