-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
43 lines (37 loc) · 1.75 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
export default defineNuxtConfig({
srcDir: 'src',
css: ['@unocss/reset/tailwind.css', '~/styles/main.css'],
modules: ['@vueuse/nuxt', '@unocss/nuxt'],
ssr: true,
app: {
head: {
titleTemplate: `%s · 소비자59`,
htmlAttrs: {
lang: 'ko-KR',
dir: 'ltr',
},
meta: [
{ id: 'description', property: 'description', content: '2022년 서울지방법원이 선정한 소비자를 위한 59가지 문장' },
{ id: 'og:type', property: 'og:type', content: 'website' },
{ id: 'og:url', property: 'og:type', content: 'website' },
{ id: 'og:title', property: 'og:title', content: '소비자59' },
{ id: 'og:description', property: 'og:description', content: '2022년 서울지방법원이 선정한 소비자를 위한 59가지 문장' },
{ id: 'twitter:card', name: 'twitter:card', content: 'summary_large_image' },
{ id: 'twitter:title', name: 'twitter:title', content: '소비자59' },
{ id: 'twitter:description', name: 'twitter:description', content: '2022년 서울지방법원이 선정한 소비자를 위한 59가지 문장' },
{ id: 'twitter:domain', name: 'twitter:domain', content: 'c59.dun.land' },
{ id: 'twitter:url', name: 'twitter:url', content: 'https://c59.dun.land' },
{ id: 'twitter:creator', name: 'twitter:creator', content: '@dun__land' },
{ id: 'twitter:site', name: 'twitter:site', content: '@dun__land' },
{ id: 'fb:id', name: 'fb:app_id', content: '3140497639595640' }
],
link: [
{ rel: 'preconnect', href: 'https://dun.land' },
{ rel: 'stylesheet', href: 'https://dun.land/x/pretendard%401.3.9/pretendard--variable.css' }
]
}
},
nitro: {
preset: 'netlify'
}
})