-
Notifications
You must be signed in to change notification settings - Fork 13
/
nuxt.config.js
112 lines (95 loc) · 2.13 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
import { join } from 'path'
import * as env from './env'
// declare global {
// namespace NodeJS {
// interface Global {
// appEnv: any
// _$app: any
// }
// }
// }
global.appEnv = env
const {
/* Paths */
SRC_DIR,
CONFIGS_DIR,
// STYLES_DIR,
/* URL */
// BASE_URL,
// BASE_API_URL,
// FULL_API_URL,
// FULL_API_GRAPHQL_URL,
/* Locales */
// DEFAULT_LOCALE,
// FALLBACK_LOCALE,
// LOCALES,
/* Server */
NUXT_HOST,
NUXT_PORT
/* Other */
// BROWSERS_SUPPORT,
// NODE_SUPPORT
} = env
const modules = require(join(CONFIGS_DIR, 'modules.ts')).default
const router = require(join(CONFIGS_DIR, 'routing/router.ts')).default
const plugins = require(join(CONFIGS_DIR, 'plugins.ts')).default
const build = require(join(CONFIGS_DIR, 'build.ts')).default
const apollo = require(join(CONFIGS_DIR, 'apollo.ts')).default
const head = require(join(CONFIGS_DIR, 'head.ts')).default
const css = require(join(CONFIGS_DIR, 'css.ts')).default
const styleResources = require(join(CONFIGS_DIR, 'styleResources.ts')).default
// import i18nMessages from './src/i18n/messages'
// import extendRoutes from './src/configs/routing/extendRoutes.ts'
module.exports = {
mode: 'universal',
/**
* Current environment
*/
env,
/**
* Server settings
*/
server: {
host: NUXT_HOST, // default: localhost
port: NUXT_PORT // default: 3000
},
/**
* Set source directory
*/
srcDir: SRC_DIR,
/**
* Какой CSS подключить
*/
css,
/**
* Плагины (интеграция библиотек в Nuxt.js)
*/
plugins,
/**
* Модули (типо плагинов, но обычно других разработчиков)
*/
modules,
// Give apollo module options
apollo,
/**
* Глобальный доступ к стилям из других файлов
*/
styleResources,
/**
* Headers of the page
*/
head,
router,
/**
* Customize the progress bar color
*/
loading: {
color: '#fff100', // '#3B8070'
height: '5px'
},
/**
* Build configuration
* https://nuxtjs.org/api/configuration-build
*/
build
}