blog-web/themes/yilia/webpack.config.js
结发受长生 f1870b2ff8 国际化
2018-06-08 16:11:04 +08:00

60 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var webpack = require("webpack");
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CleanPlugin = require('clean-webpack-plugin');
// 模板压缩
// 详见https://github.com/kangax/html-minifier#options-quick-reference
var minifyHTML = {
collapseInlineTagWhitespace: true,
collapseWhitespace: true,
minifyJS:true
}
module.exports = {
entry: {
main: "./source-src/js/main.js",
slider: "./source-src/js/slider.js",
mobile: ["babel-polyfill", "./source-src/js/mobile.js"]
},
output: {
path: __dirname+"/source",
filename: "js/[name].[chunkhash].js"
},
module: {
loaders: [{
test: /\.js$/,
loader: 'babel-loader?cacheDirectory',
exclude: /node_modules/
}, {
test: /\.html$/,
loader: 'html'
}, {
test: /\.(scss|sass|css)$/,
loader: ExtractTextPlugin.extract({fallback:"style-loader",use:["css-loader","postcss-loader","sass-loader?outputStyle=compressed"]})
}, {
test: /\.(gif|jpg|png)\??.*$/,
loader: 'url-loader?limit=500&name=img/[name].[ext]'
}, {
test: /\.(woff|svg|eot|ttf)\??.*$/,
loader: "file-loader?name=fonts/[name].[hash:6].[ext]"
}]
},
plugins: [
new ExtractTextPlugin('style.css'),
new HtmlWebpackPlugin({
inject: false,
cache: false,
minify: minifyHTML,
template: './source-src/script.ejs',
filename: '../layout/_partial/script.ejs'
}),
new CleanPlugin(['source/js/*.js'],{
verbose: true,
dry: false,
})
],
watch: true
}