🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
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.

88 lines
2.0 KiB

7 years ago
const path = require('path')
const webpack = require('webpack')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const WebpackChunkHash = require('webpack-chunk-hash')
const HtmlWebpackPlugin = require('html-webpack-plugin')
7 years ago
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.config')
7 years ago
const modulePlugin = new ExtractTextPlugin({
filename: '[name].[chunkhash].css',
allChunks: true,
})
7 years ago
module.exports = merge(baseWebpackConfig, {
7 years ago
output: {
7 years ago
path: path.resolve(__dirname, './site-dist'),
publicPath: '/ant-design/',
7 years ago
filename: '[name].[chunkhash].js',
chunkFilename: '[chunkhash].async.js',
},
module: {
rules: [
{
test: /\.less$/,
use: modulePlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
},
7 years ago
{
loader: 'postcss-loader',
},
7 years ago
{ loader: 'less-loader',
},
],
}),
},
7 years ago
{
test: /\.css$/,
use: modulePlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
},
7 years ago
{
loader: 'postcss-loader',
},
7 years ago
],
}),
},
7 years ago
],
},
7 years ago
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"',
},
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vender',
minChunks: function (module) {
return /node_modules/.test(module.context)
},
7 years ago
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity,
7 years ago
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
},
}),
new HtmlWebpackPlugin({
7 years ago
template: './site/index.html',
7 years ago
inject: true,
production: true,
}),
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
modulePlugin,
new WebpackChunkHash({ algorithm: 'md5' }),
],
})