-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
85 lines (79 loc) · 1.84 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const isDev = process.env.NODE_ENV === 'development'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: true,
modules: [
"@nuxtjs/tailwindcss",
"@nuxtjs/google-fonts",
],
routeRules: {
'/**': isDev
? {}
: {
// isr: 60,
cache: {
swr: true,
maxAge: 120,
staleMaxAge: 60,
headersOnly: true,
},
},
// "/": isDev
// ? {}
// : {
// prerender: true,
// },
// "/api/*": isDev
// ? {}
// : {
// cache: { maxAge: 60 * 60 },
// },
},
app: {
pageTransition: { name: 'page', mode: 'out-in' },
layoutTransition: { name: 'layout', mode: 'out-in' },
head: {
title: 'Create RSS feed from a Telegram channel | tg-channel-to-rss',
htmlAttrs: { lang: 'en', class: 'h-full antialiased' },
bodyAttrs: {
class: 'bg-slate-950',
},
meta: [
// SEO meta tags
{ charset: 'utf-8' },
// { name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
name: 'viewport',
content: 'width=device-width, initial-scale=1, maximum-scale=1',
},
{ name: 'keywords', content: '' },
{
name: 'description',
content: 'Create RSS feed from a Telegram channel',
},
],
link: [
{
rel: 'icon',
type: 'image/png',
href: '/favicon.png',
},
{
rel: 'shortcut icon',
type: 'image/png',
href: '/favicon.png',
},
],
},
},
googleFonts: {
families: {
"JetBrains+Mono": [400, 600, 700],
},
display: "swap",
prefetch: true,
preconnect: true,
preload: true,
},
})