1 Star 0 Fork 0

JJ / weex-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 774 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiejj 提交于 2018-09-04 15:04 . 基础配置
// You can see all the config in `./configs`.
const buildPlugins = require('./configs/plugin');
let webpackConfig;
module.exports = env => {
switch (env.NODE_ENV) {
case 'prod':
case 'production':
webpackConfig = require('./configs/webpack.prod.conf');
break;
case 'test':
case 'testing':
webpackConfig = require('./configs/webpack.test.conf');
break;
case 'plugin':
buildPlugins();
case 'common':
webpackConfig = require('./configs/webpack.common.conf');
break;
case 'release':
webpackConfig = require('./configs/webpack.release.conf');
break;
case 'dev':
case 'development':
default:
webpackConfig = require('./configs/webpack.dev.conf');
}
return webpackConfig;
}
1
https://gitee.com/JianJunXie/weex-app.git
git@gitee.com:JianJunXie/weex-app.git
JianJunXie
weex-app
weex-app
master

搜索帮助