mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-17 14:30:33 +00:00
152 lines
3.8 KiB
JavaScript
152 lines
3.8 KiB
JavaScript
import webpack from 'webpack';
|
|
import path from 'path';
|
|
import merge from 'webpack-merge';
|
|
import autoprefixer from 'autoprefixer';
|
|
import ExtractTextPlugin from 'extract-text-webpack-plugin';
|
|
import CopyWebpackPlugin from 'copy-webpack-plugin';
|
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
|
import OptimizeJsPlugin from 'optimize-js-plugin';
|
|
import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin';
|
|
import mediaPacker from 'css-mqpacker';
|
|
import config from '../config';
|
|
import baseConfig from './base';
|
|
|
|
const docsPath = path.join(config.rootPath, config.docsPath);
|
|
|
|
const conf = merge(baseConfig, {
|
|
output: {
|
|
path: docsPath,
|
|
publicPath: '',
|
|
filename: '[name].[chunkhash:8].js',
|
|
chunkFilename: '[name].[chunkhash:8].js'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
options: {
|
|
loaders: {
|
|
css: ExtractTextPlugin.extract({
|
|
use: 'css-loader',
|
|
fallback: 'vue-style-loader'
|
|
}),
|
|
scss: ExtractTextPlugin.extract({
|
|
use: 'css-loader!sass-loader',
|
|
fallback: 'vue-style-loader'
|
|
})
|
|
},
|
|
postcss: [
|
|
autoprefixer({
|
|
browsers: ['last 3 versions', 'not IE < 10']
|
|
}),
|
|
mediaPacker()
|
|
]
|
|
}
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: ExtractTextPlugin.extract({
|
|
use: 'css-loader',
|
|
fallback: 'vue-style-loader'
|
|
})
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
loader: ExtractTextPlugin.extract({
|
|
use: 'css-loader!sass-loader',
|
|
fallback: 'vue-style-loader'
|
|
})
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.LoaderOptionsPlugin({
|
|
minimize: true,
|
|
debug: true
|
|
}),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false,
|
|
screw_ie8: true,
|
|
conditionals: true,
|
|
unused: true,
|
|
comparisons: true,
|
|
sequences: true,
|
|
dead_code: true,
|
|
evaluate: true,
|
|
join_vars: true,
|
|
if_return: true
|
|
},
|
|
output: {
|
|
comments: false
|
|
},
|
|
sourceMap: false
|
|
}),
|
|
new OptimizeJsPlugin({
|
|
sourceMap: false
|
|
}),
|
|
new ExtractTextPlugin('[name].[contenthash:8].css'),
|
|
new CopyWebpackPlugin([
|
|
{
|
|
context: config.assetsPath,
|
|
from: '**/*',
|
|
to: path.join(docsPath, 'assets')
|
|
},
|
|
{
|
|
context: config.docsPath,
|
|
from: 'changelog.html',
|
|
to: docsPath
|
|
},
|
|
{
|
|
context: config.docsPath,
|
|
from: 'versions.json',
|
|
to: docsPath
|
|
}
|
|
]),
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: config.indexPath,
|
|
inject: true,
|
|
minify: {
|
|
caseSensitive: true,
|
|
collapseBooleanAttributes: true,
|
|
collapseWhitespace: true,
|
|
minifyCSS: true,
|
|
minifyJS: true,
|
|
preventAttributesEscaping: true,
|
|
removeAttributeQuotes: true,
|
|
removeComments: true,
|
|
removeCommentsFromCDATA: true,
|
|
removeEmptyAttributes: true,
|
|
removeOptionalTags: true,
|
|
removeRedundantAttributes: true,
|
|
removeScriptTypeAttributes: true,
|
|
removeStyleLinkTypeAttributes: true,
|
|
useShortDoctype: true
|
|
},
|
|
chunksSortMode: 'dependency'
|
|
}),
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
name: 'vendor',
|
|
minChunks(module) {
|
|
let resource = module.resource;
|
|
|
|
if (resource && (/\.js$/).test(resource)) {
|
|
return resource.indexOf(config.nodePath) >= 0;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}),
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
name: 'manifest',
|
|
chunks: ['vendor']
|
|
}),
|
|
new OptimizeCssAssetsPlugin({
|
|
canPrint: false
|
|
})
|
|
]
|
|
});
|
|
|
|
export default conf;
|