-
Notifications
You must be signed in to change notification settings - Fork 4
/
nuxt.config.ts
executable file
·41 lines (40 loc) · 1.97 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr:true,
app: {
head: {
titleTemplate: 'Parch Linux',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [
{ name: 'application-name', content: 'Parch Linux' },
{ name: 'twitter:title', content: 'Parch Linux' },
{ property: 'og:site_name', content: 'Parch Linux' },
{ property: 'og:title', content: 'Parch Linux' },
{ name: 'description', content: 'Parch Linux is an open-source, Arch-based Linux distribution, that tried to be pretty, easy to use, light, fast and stable.' },
{ name: 'twitter:description', content: 'Parch Linux is an open-source, Arch-based Linux distribution, that tried to be pretty, easy to use, light, fast and stable.' },
{ property: 'og:description', content: 'Parch Linux is an open-source, Arch-based Linux distribution, that tried to be pretty, easy to use, light, fast and stable.' },
{ name: 'keywords', content: 'parch linux, parchlinux, parch, linux' },
{ property: 'og:image', content: 'https://parchlinux.com/logo.png' },
{ name: 'twitter:image', content: 'https://parchlinux.com/logo.png' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://parchlinux.ir' },
{ name: 'google-site-verification', content: 'l9uMrT1nBJ_BEbB86DofFIMYcbQgbxE7PCKJOMZpVSI' },
],
link: [
{ rel: 'apple-touch-icon', type: 'image/png', sizes: '180x180', href: '/img/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/img/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/img/favicon-16x16.png' },
]
}
},
devtools: { enabled: false },
// plugins: [{ src: "~/plugin/vsnow.js", mode: "client" }],
modules: [
'@nuxtjs/tailwindcss',
'nuxt-icon',
],
css: [
'@/assets/css/main.css',
],
})