UNPKG
vue-cli-plugin-app-config
Version:
latest (1.0.16)
1.0.16
1.0.15
1.0.14
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
一个vue项目配置文件管理的解决方案,可方便开发者在本地环境/测试环境/投产环境等多种配置里面快速切换
vue-cli-plugin-app-config
/
.eslintrc.js
15 lines
(14 loc)
•
311 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module
.
exports
= { root:
true
, env: { node:
true
},
'extends'
: [], rules: {
'no-console'
: process.env.NODE_ENV ===
'production'
?
'error'
:
'off'
,
'no-debugger'
: process.env.NODE_ENV ===
'production'
?
'error'
:
'off'
}, parserOptions: { parser:
'babel-eslint'
} }