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.

22 lines
639 B

3 years ago
/**
* 开发配置
* */
const env = process.env.NODE_ENV;
const Setting = {
// 是否使用 Mock 的数据,默认 开发环境为 true,生产环境为 false
isMock: true,
// 部署应用包时的基本 URL
3 years ago
publicPath: env === "development" ? "./" : "",
3 years ago
// 生产环境构建文件的目录名
3 years ago
outputDir: "dist",
3 years ago
// 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。
3 years ago
assetsDir: "static",
3 years ago
// 开发环境每次保存时 lint 代码,会将 lint 错误输出为编译警告
// true || false || error
3 years ago
lintOnSave: true
3 years ago
};
module.exports = Setting;