-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
75 lines (71 loc) · 1.65 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss',
'nuxt-typed-router',
'shadcn-nuxt',
'@nuxtjs/color-mode',
'@nuxt/fonts',
'@nuxtjs/seo',
],
tailwindcss: {
exposeConfig: true,
},
app: {
pageTransition: { name: 'page', mode: 'out-in' },
head: {
titleTemplate: '',
},
},
fonts: {
defaults: {
weights: [400, 500, 700, 800],
},
assets: {
prefix: '/public/_fonts/',
},
},
ogImage: {
fonts: [
{
name: 'Chillax',
weight: 500,
path: '/fonts/WZY5PMNTII6NKOB2TTIAX7QVAWMSY2DQ-pyl6MWuNMf.ttf',
},
{
name: 'Satoshi',
weight: 400,
path: '/fonts/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY-7iCxS4avLs.ttf',
},
{
name: 'Satoshi',
weight: 500,
path: '/fonts/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP-hLQRzv849O.ttf',
},
],
},
site: {
url: process.env.SITE_URL,
name: 'Encontro Norte Capixaba de Computação (ENCOMP)',
description: 'O Encontro Norte Capixaba de Computação ou ENCOMP é um evento de tecnologia realizado por alunos de Ciência e Engenharia da Computação da UFES - Campus São Mateus.',
defaultLocale: 'pt-BR',
},
shadcn: {
/**
* Prefix for all the imported component
*/
prefix: '',
/**
* Directory that the component lives in.
* @default "./components/ui"
*/
componentDir: './components/ui',
},
colorMode: {
preference: 'dark',
fallback: 'dark',
classSuffix: '',
},
})