-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt.config.js
196 lines (180 loc) · 6.12 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
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
export default {
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
ssr: false,
// Target: https://go.nuxtjs.dev/config-target
target: 'static',
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: `%s - ${process.env.SITE_NAME}`,
title: process.env.SITE_NAME,
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: process.env.SITE_DESCRIPTION },
{ name: 'robots', content: 'nofollow,noindex,noarchive' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'preload', href: '/sweet-potato-logo3.png', as: 'image' },
{ rel: 'preconnect dns-prefetch', href: process.env.API_ENDPOINT },
{ rel: 'preconnect dns-prefetch', href: '//firebasestorage.googleapis.com' },
{ rel: 'preconnect dns-prefetch', href: '//www.googleapis.com' },
{ rel: 'preconnect dns-prefetch', href: '//cdn.jsdelivr.net' },
{ rel: 'dns-prefetch', href: '//lh3.googleusercontent.com' }
]
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
'@/utils/axios-accessor',
'@/plugins/potato',
'@/plugins/logrocket'
],
// 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/vuetify
'@nuxtjs/vuetify',
'nuxt-purgecss'
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
// https://go.nuxtjs.dev/axios
'@nuxtjs/axios',
// https://go.nuxtjs.dev/pwa
'@nuxtjs/pwa',
'@nuxtjs/markdownit',
// https://github.com/frenchrabbit/nuxt-precompress#readme
'nuxt-precompress'
],
purgeCSS: {
enabled: ({ isDev }) => !isDev,
paths: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'./node_modules/vuetify/dist/vuetify.js'
],
styleExtensions: ['.css'],
whitelist: ['v-application', 'v-application--wrap', 'layout', 'row', 'col'],
whitelistPatterns: [
/^v-((?!application).)*$/,
/^theme--*/,
/.*-transition/,
/^justify-*/,
/^p*-[0-9]/,
/^m*-[0-9]/,
/^text--*/,
/--text$/,
/^row-*/,
/^col-*/
],
whitelistPatternsChildren: [/^v-((?!application).)*$/, /^theme--*/],
extractors: [
{
extractor: content => content.match(/[A-z0-9-:\\/]+/g) || [],
extensions: ['html', 'vue', 'js']
}
]
},
nuxtPrecompress: {
enabled: process.env.NODE_ENV === 'production', // Enable in production
report: false, // set true to turn one console messages during module init
test: /\.(js|css|html|txt|xml|svg)$/, // files to compress on build
// Serving options
middleware: {
// You can disable middleware if you serve static files using nginx...
enabled: true,
// Enable if you have .gz or .br files in /static/ folder
enabledStatic: true,
// Priority of content-encodings, first matched with request Accept-Encoding will me served
encodingsPriority: ['br', 'gzip']
},
// build time compression settings
gzip: {
// should compress to gzip?
enabled: true,
// compression config
// https://www.npmjs.com/package/compression-webpack-plugin
filename: '[path].gz[query]', // middleware will look for this filename
threshold: 10240,
minRatio: 0.8,
compressionOptions: { level: 9 }
},
brotli: {
// should compress to brotli?
enabled: true,
// compression config
// https://www.npmjs.com/package/compression-webpack-plugin
filename: '[path].br[query]', // middleware will look for this filename
compressionOptions: { level: 11 },
threshold: 10240,
minRatio: 0.8
}
},
markdownit: {
runtime: true, // Support `$md()`
breaks: true, // 改行コードを<br>に変換する
html: true, // HTML タグを有効にする
linkify: true // URLに似たテキストをリンクに自動変換する
},
// Axios module configuration: https://go.nuxtjs.dev/config-axios
axios: {},
// PWA module configuration: https://go.nuxtjs.dev/pwa
pwa: {
manifest: {
lang: 'ja',
name: process.env.SITE_NAME,
short_name: process.env.PWA_NAME,
theme_color: process.env.PWA_COLOR_THEME,
background_color: process.env.PWA_COLOR_BACKGROUND,
ogTitle: process.env.SITE_NAME,
ogSiteName: process.env.SITE_NAME,
ogImage: `${process.env.FRONT_ENDPOINT}/sweet-potato-logo3.png`,
display: 'standalone',
description: process.env.SITE_DESCRIPTION,
shortcuts: [
{
name: '譜面一覧画面を開く',
short_name: '一覧',
description: '新着順で投稿一覧画面を開きます',
url: `${process.env.FRONT_ENDPOINT}/fumen/list`,
icons: [{
src: `${process.env.FRONT_ENDPOINT}/menu.png`, sizes: '128x128'
}]
}
]
}
},
// Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
vuetify: {
optionsPath: './vuetify.config.js'
},
publicRuntimeConfig: {
API_ENDPOINT: process.env.API_ENDPOINT,
FRONT_ENDPOINT: process.env.FRONT_ENDPOINT,
DISCORD_URL: process.env.DISCORD_URL,
DMCA_URL: process.env.DMCA_URL
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
extractCSS: true,
babel: {
plugins: [['@babel/plugin-proposal-private-methods', { loose: true }]]
},
extend (config, _ctx) {
config.module.rules.push({
enforce: 'pre',
test: /\.txt$/,
loader: 'raw-loader',
exclude: /(node_modules)/
})
}
}
}