-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathwebpack-handle-css.js
68 lines (67 loc) · 1.83 KB
/
webpack-handle-css.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// 一个常见的`webpack`配置文件
const path = require('path')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
module.exports = {
entry: {
antd_mobile_min: path.join(__dirname, '/static/scripts/just-generate-css/antd-mobile-min.js'),
app_min: path.join(__dirname, '/static/scripts/just-generate-css/app-min.js'),
}, // 已多次提及的唯一入口文件
output: {
path: path.join(__dirname, '/static/styles'),
filename: '[name].js',
},
devtool: 'none',
devServer: {
contentBase: './public', // 本地服务器所加载的页面所在的目录
historyApiFallback: true, // 不跳转
inline: true,
hot: true,
},
module: {
rules: [{
test: /(\.jsx|\.js)$/,
use: {
loader: 'babel-loader',
},
exclude: /node_modules/,
}, {
test: /\.(eot|svg|ttf|woff).*$/,
loader: 'url-loader',
options: {
limit: 15000,
},
},
{
test: /\.(gif|jpe?g|png|ico).*$/,
loader: 'url-loader',
options: {
limit: 15000,
},
}, {
test: /\.scss$/,
use: ExtractTextPlugin.extract({
use: [
{ loader: 'css-loader', options: { sourceMap: true, minimize: true } },
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'sass-loader', options: { sourceMap: true } },
],
}),
}, {
test: /\.less$/,
use: ExtractTextPlugin.extract({
use: [
{ loader: 'css-loader', options: { sourceMap: true, minimize: true } },
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'less-loader', options: { sourceMap: true } },
],
}),
}],
},
plugins: [
new ExtractTextPlugin({
filename: '[name].css',
disable: false,
allChunks: true,
}),
],
}