-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.config.js
More file actions
36 lines (36 loc) · 790 Bytes
/
app.config.js
File metadata and controls
36 lines (36 loc) · 790 Bytes
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
module.exports = {
TITLE: '',
SHORT_NAME: '',
DESCRIPTION: '',
PUBLIC_PATH: '/', // for relative use './'
OUTPUT_PATH: './build',
FAVICONS: true,
LANGUAGE: 'ru',
START_URL: '/?utm_source=app_manifest',
THEME_COLOR: '#fff',
BACKGROUND_COLOR: '#fff',
FAVICONS_OPTIONS: {},
HTML_PRETTY: true,
SENTRY: {
dsn: '',
ignoreErrors: [],
blacklistUrls: [],
whitelistUrls: [],
},
LINT_FIX: true,
WEBP: true,
AVIF: false,
BROTLI: true,
RESIZE: false,
GZIP: false,
STYLELINT: true,
ESLINT: true,
IMAGEMIN: true,
SORT_MEQIA_QUERIES: 'mobile-first',
RESOLVE_URL: true,
SPLIT_CHUNKS: true,
JSDOC: false,
get ENV() {
return require('./app.env');
},
};