-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.ts
245 lines (219 loc) · 6.28 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import colors from "vuetify/es5/util/colors";
require("dotenv").config();
const config: import("@nuxt/types").NuxtConfig = {
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
ssr: false,
// Global page headers (https://go.nuxtjs.dev/config-head)
head: {
titleTemplate: "%s",
title: "Genshin Mirror",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "" },
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
// HMT
script: process.env.NODE_ENV === "production" ? [{ src: "https://hm.baidu.com/hm.js?543c5e05f8df5c5dadd8b355c3ee8d16", defer: true, body: true }] : [],
},
// Automatically generate or serve dynamic sitemap.xml (https://www.npmjs.com/package/@nuxtjs/sitemap)
sitemap: {},
ignore: ["**/*.test.*", "**/*.spec.*"],
// Global CSS (https://go.nuxtjs.dev/config-css)
css: ["~/assets/global.less"],
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
plugins: [
// vuex-persist
{ src: "~/plugins/vuex-persist", ssr: false },
{ src: "~/plugins/vue-class-component", ssr: false },
],
// 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/typescript
"@nuxt/typescript-build",
// https://go.nuxtjs.dev/stylelint
"@nuxtjs/stylelint-module",
// https://go.nuxtjs.dev/vuetify
"@nuxtjs/vuetify",
[
"@nuxtjs/localforage",
{
/* module options */
name: "gsMirror",
storeName: "gsMirrorLocal",
},
],
],
// Modules (https://go.nuxtjs.dev/config-modules)
modules: [
// https://go.nuxtjs.dev/axios
"@nuxtjs/axios",
// https://go.nuxtjs.dev/pwa
"@nuxtjs/pwa",
// https://i18n.nuxtjs.org/
"nuxt-i18n",
// https://go.nuxtjs.dev/content
"@nuxt/content",
// https://www.npmjs.com/package/@nuxtjs/apollo
"@nuxtjs/apollo",
// https://www.npmjs.com/package/@nuxtjs/sitemap
"@nuxtjs/sitemap",
],
apollo: {
clientConfigs: {
default: {
httpEndpoint: process.env.BASE_URL + "/graphql",
browserHttpEndpoint: "/graphql",
tokenName: "apollo-token",
inMemoryCacheOptions: {
// typePolicies: {
// userCharacters: {
// keyFields: ["avatarId", "owner"],
// },
// },
},
} as any,
},
// setup a global error handler (see below for example)
errorHandler: "~/plugins/apollo-error-handler.ts",
// Sets the authentication type for any authorized request.
authenticationType: "Bearer",
// Token name for the cookie which will be set in case of authentication
tokenName: "apollo-token",
// Cookie parameters used to store authentication token
cookieAttributes: {
/**
* Define when the cookie will be removed. Value can be a Number
* which will be interpreted as days from time of creation or a
* Date instance. If omitted, the cookie becomes a session cookie.
*/
expires: 15,
/**
* Define the path where the cookie is available. Defaults to '/'
*/
path: "/",
/**
* Define the domain where the cookie is available. Defaults to
* the domain of the page where the cookie was created.
*/
domain: new URL(process.env.BASE_URL!).hostname,
/**
* A Boolean indicating if the cookie transmission requires a
* secure protocol (https). Defaults to false.
*/
secure: process.env.NODE_ENV === "production",
},
},
pwa: {
icon: {
source: "~/static/icon.png",
},
},
// i18n config
i18n: {
defaultLocale: "en",
vueI18n: {
fallbackLocale: {
// "zh-Hans": ["zh", "zh-CN", "zh-SG"],
// "zh-Hant": ["zh-TW", "zh-HK", "zh-MO"],
default: ["en"],
},
},
strategy: "no_prefix",
detectBrowserLanguage: {
useCookie: true,
cookieKey: "i18n_redirected",
onlyOnRoot: true,
},
lazy: true,
langDir: "locales/",
locales: [
// ** ADD YOUR LOCALE FILE HERE **
{
code: "en",
file: "en.json",
name: "English",
},
{
code: "zh-Hans",
file: "zh-Hans.json",
name: "简体中文",
},
{
code: "zh-Hant",
file: "zh-Hant.json",
name: "繁體中文",
},
{
code: "ja",
file: "ja.json",
name: "日本語",
},
],
},
// Axios module configuration (https://go.nuxtjs.dev/config-axios)
axios: {
baseURL: process.env.BASE_URL,
browserBaseURL: "/api",
},
// Content module configuration (https://go.nuxtjs.dev/config-content)
content: {
fullTextSearchFields: ["title", "description", "slug"],
},
// Vuetify module configuration (https://go.nuxtjs.dev/config-vuetify)
vuetify: {
// customVariables: ["~/assets/variables.scss"],
theme: {
dark: true,
default: "dark",
disable: false,
options: {},
themes: {
light: {
primary: colors.indigo.base,
accent: colors.shades.black,
secondary: colors.grey.darken1,
error: colors.red.accent3,
info: colors.teal.lighten1,
warning: colors.amber.base,
success: colors.green.accent3,
},
dark: {
primary: colors.blue.darken2,
accent: colors.grey.darken3,
secondary: colors.amber.darken3,
error: colors.deepOrange.accent4,
info: colors.teal.lighten1,
warning: colors.amber.base,
success: colors.green.accent3,
},
},
},
},
server: {
host: "127.0.0.1",
port: 7333,
},
// Build Configuration (https://go.nuxtjs.dev/config-build)
build: {
extractCSS: {
ignoreOrder: true,
},
// extract everything into a single file
optimization: {
splitChunks: {
cacheGroups: {
styles: {
name: "styles",
test: /\.vue$/,
chunks: "all",
enforce: true,
},
},
},
},
},
};
export default config;