forked from nostaljic/tidory.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
83 lines (75 loc) · 2.96 KB
/
nuxt.config.js
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
export default {
// Target: https://go.nuxtjs.dev/config-target
target: 'static',
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: '티스토리 스킨 프레임워크, 티도리(TIDORY) ― %s',
htmlAttrs: {
lang: 'ko'
},
meta: [
{ charset: 'utf-8' },
{ name: 'format-detection', content: 'telephone=no' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: '오직 티스토리 스킨만을 위한 프레임워크' },
{ name: 'author', content: '정상우' },
{ name: 'keywords', content: '티스토리, 티스토리 스킨, 티스토리 스킨 제작, 티스토리 프레임워크, 티도리, TISTORY, TIDORY' },
{ content: '/images/og.png', property: 'og:image' },
{ content: '오직 티스토리 스킨만을 위한 프레임워크', property: 'og:description' },
{ content: 'https://tidory.com', property: 'og:url' },
{ content: 'TIDORY', property: 'og:site_name' },
{ content: '티스토리 스킨 프레임워크, 티도리(TIDORY)', property: 'og:title' }
],
link: [
{ rel: 'shortcut icon', href: '/images/favicon.ico' },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/images/180x180.png' },
{ rel: 'apple-touch-icon', sizes: '76x76', href: '/images/76x76.png' },
{ rel: 'apple-touch-icon', sizes: '120x120', href: '/images/120x152.png' },
{ rel: 'apple-touch-icon', sizes: '152x152', href: '/images/152x152.png' },
{ rel: 'preconnect', href: '//fonts.gstatic.com' },
{ rel: 'preconnect', href: '//ka-f.fontawesome.com' },
{ rel: 'stylesheet', href: '//cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT.css' },
{ rel: 'stylesheet', href: '//fonts.googleapis.com/css2?family=Source+Code+Pro:ital@0;1&display=swap' },
{ rel: 'stylesheet', href: '//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css' }
]
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
'@/assets/css/app.css'
],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
],
// Auto import components: https://go.nuxtjs.dev/config-components
components: true,
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
// https://go.nuxtjs.dev/eslint
'@nuxtjs/eslint-module',
'@nuxt/postcss8'
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
// https://go.nuxtjs.dev/content
'@nuxt/content'
],
// Content module configuration: https://go.nuxtjs.dev/config-content
content: {
markdown: {
prism: {
theme: 'prism-themes/themes/prism-vsc-dark-plus.css'
}
},
liveEdit: false
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
postcss: {
plugins: {
'tailwindcss/nesting': {},
tailwindcss: {},
autoprefixer: {}
}
}
}
}