6 Star 6 Fork 1

GavinZhulei / cnblogs-wap

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
webpack.config.js 1.53 KB
Copy Edit Raw Blame History
GavinZhulei authored 2017-01-09 18:09 . first push
const webpack = require('atool-build/lib/webpack');
const pxtorem = require('postcss-pxtorem');
module.exports = function(webpackConfig, env) {
webpackConfig.babel.plugins.push('transform-runtime');
webpackConfig.babel.plugins.push(['import', { libraryName: 'antd-mobile', style: 'css' }])
// Support hmr
if (env === 'development') {
webpackConfig.devtool = '#eval';
webpackConfig.babel.plugins.push('dva-hmr');
} else {
webpackConfig.babel.plugins.push('dev-expression');
}
// Don't extract common.js and common.css
webpackConfig.plugins = webpackConfig.plugins.filter(function(plugin) {
return !(plugin instanceof webpack.optimize.CommonsChunkPlugin);
});
// Support CSS Modules
// Parse all less files as css module.
webpackConfig.module.loaders.forEach(function(loader, index) {
if (typeof loader.test === 'function' && loader.test.toString().indexOf('\\.less$') > -1) {
loader.include = /node_modules/;
loader.test = /\.less$/;
}
if (loader.test.toString() === '/\\.module\\.less$/') {
loader.exclude = /node_modules/;
loader.test = /\.less$/;
}
if (typeof loader.test === 'function' && loader.test.toString().indexOf('\\.css$') > -1) {
loader.include = /node_modules/;
loader.test = /\.css$/;
}
if (loader.test.toString() === '/\\.module\\.css$/') {
loader.exclude = /node_modules/;
loader.test = /\.css$/;
}
});
webpackConfig.postcss.push(pxtorem({
rootValue: 100,
propWhiteList: [],
}));
return webpackConfig;
};
JavaScript
1
https://gitee.com/gavinzhulei/cnblogs-wap.git
git@gitee.com:gavinzhulei/cnblogs-wap.git
gavinzhulei
cnblogs-wap
cnblogs-wap
master

Search