-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
81 lines (80 loc) · 2.17 KB
/
webpack.config.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
69
70
71
72
73
74
75
76
77
78
79
80
81
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const extractLESS = new ExtractTextPlugin('[name].css');
const webpack = require("webpack");
module.exports = {
entry: {
mcommon: './app/assets/m/common/index.js',
mfind: './app/assets/m/find/index.jsx',
mworks: './app/assets/m/works/index.jsx',
mauthor: './app/assets/m/author/index.jsx',
msearch: './app/assets/m/search/index.jsx',
mmy: './app/assets/m/my/index.jsx',
mlogin: './app/assets/m/login/index.jsx',
mpost: './app/assets/m/post/index.jsx',
dcommon: './app/assets/d/common/index.js',
dindex: './app/assets/d/index/index.jsx',
dfind: './app/assets/d/find/index.jsx',
dworks: './app/assets/d/works/index.jsx',
dauthor: './app/assets/d/author/index.jsx',
dsearch: './app/assets/d/search/index.jsx',
dmy: './app/assets/d/my/index.jsx',
dlogin: './app/assets/d/login/index.jsx',
dupload: './app/assets/d/upload/index.jsx',
dguide: './app/assets/d/guide/index.jsx',
dpost: './app/assets/d/post/index.jsx',
rcommon: './app/assets/rhyme/common/index.js',
rsingle: './app/assets/rhyme/single/index.jsx',
jrjbz: './app/assets/rhyme/jrjbz/index.jsx',
},
output: {
path: __dirname + '/app/public',
filename: '[name].js'
},
devServer: {
contentBase: './app/public'
},
module: {
rules: [
{
test: /\.jsx$/,
use: [
{
loader: 'babel-loader',
options: { presets: ['es2015'] }
},
{
loader: 'migi-loader'
}
]
},
{
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: { presets: ['es2015'] }
}
]
},
{
test: /\.less$/,
use: extractLESS.extract([ 'css-loader', 'autoprefixer-loader', 'less-loader' ])
},
{
test: /(\.jpg)|(\.jpeg)|(\.gif)|(\.png)$/,
use: 'url-loader?limit=10240&name=[path][name].[ext]'
},
{
test: /\.(html?)|(\.mp\d)$/,
use: 'file-loader?name=[path][name].[ext]'
}
]
},
plugins: [
extractLESS
],
resolve: {
alias: {
}
}
};