-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt.config.ts
161 lines (149 loc) · 3.37 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import vuetify from 'vite-plugin-vuetify'
import { getRoutes } from './firebase/routes'
export default defineNuxtConfig({
imports: {
dirs: ['stores'],
},
app: {
keepalive: true,
baseURL: '/',
head: {
titleTemplate: '%s',
title: 'Little 작가',
meta: [
{
hid: 'description',
name: 'description',
content:
'Learn to write with Little 작가. Little 작가 is a writing platform for kids to learn to write.',
},
{
name: 'author',
content: ['Hyunseung', 'Juha Im', 'Jinwon Kim'],
},
{
name: 'copyright',
content: 'LCW',
},
{
name: 'subtitle',
content: '글을 올리고, 새롭게 배우고, 대화하기',
},
{
name: 'subject',
content: '글을 올리고, 새롭게 배우고, 대화하기',
},
{
name: 'language',
content: 'ES, KO-KR',
},
{
name: 'viewport',
content: 'width=device-width, initial-scale=1',
},
{
charset: 'utf-8',
},
{
name: 'theme-color',
content: '#23262E',
},
],
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico',
},
{
rel: 'apple-touch-icon',
href: '/favicon.ico',
},
],
noscript: [
{
children: 'This website requires JavaScript',
},
],
},
},
typescript: {
strict: true,
shim: false,
},
ssr: false,
css: [
'/assets/css/global.css',
'/assets/css/custom.css',
'/assets/css/vuetify.css',
'vuetify/lib/styles/main.sass',
'@mdi/font/css/materialdesignicons.min.css',
],
plugins: ['/plugins/firebase.ts'],
modules: [
(
_: any,
nuxt: {
hooks: { hook: (arg0: string, arg1: (config: any) => any) => void }
}
) => {
nuxt.hooks.hook('vite:extendConfig', (config: any) =>
config.plugins.push(
vuetify({
styles: {
configFile: 'assets/scss/vuetify.scss',
},
})
)
)
},
[
'@pinia/nuxt',
{
autoImports: ['defineStore'],
},
],
'@kevinmarrec/nuxt-pwa',
'@vueuse/nuxt',
'nuxt-gtag',
],
pwa: {
manifest: {
name: 'Little 작가',
short_name: 'Little 작가',
description:
'Little 작가는 글을 올리고, 새롭게 배우고, 대화하기 위한 플랫폼입니다.',
lang: 'ko',
display: 'standalone',
background_color: '#23262E',
theme_color: '#23262E',
start_url: '/',
icons: [],
},
},
vite: {
define: {
'process.env.DEBUG': false,
},
},
build: {
transpile: ['vuetify'],
},
hooks: {
async 'nitro:config'(config: { prerender: { routes: any[] } }) {
config?.prerender?.routes?.push(...(await getRoutes()))
},
},
sourcemap: {
server: false,
client: false,
},
experimental: {
payloadExtraction: true,
viewTransition: true,
typedPages: true,
},
gtag: {
id: 'G-F7Z7BLCQDQ',
},
})