You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
639 B
21 lines
639 B
/** |
|
* 开发配置 |
|
* */ |
|
|
|
const env = process.env.NODE_ENV; |
|
|
|
const Setting = { |
|
// 是否使用 Mock 的数据,默认 开发环境为 true,生产环境为 false |
|
isMock: true, |
|
// 部署应用包时的基本 URL |
|
publicPath: env === "development" ? "./" : "", |
|
// 生产环境构建文件的目录名 |
|
outputDir: "dist", |
|
// 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。 |
|
assetsDir: "static", |
|
// 开发环境每次保存时 lint 代码,会将 lint 错误输出为编译警告 |
|
// true || false || error |
|
lintOnSave: true |
|
}; |
|
|
|
module.exports = Setting;
|
|
|