ant-design/webpack.config.production.js
2015-07-21 18:06:42 +08:00

12 lines
318 B
JavaScript

// webpack.config.production.js
// release full dist files
var pkg = require('./package');
var webpack = require("webpack");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var config = require("./webpack.config.js");
delete config.entry.demo;
delete config.entry[pkg.name];
module.exports = config;