-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (43 loc) · 1010 Bytes
/
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
var webpack = require('webpack');
var path = require('path');
var NODE_DIR = path.resolve(__dirname, 'node_modules');
var BUILD_DIR = path.resolve(__dirname, 'public');
var APP_DIR = path.resolve(__dirname, 'app');
var config = {
entry: APP_DIR + '/index.js',
output: {
path: BUILD_DIR,
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.js$/,
exclude: [NODE_DIR],
include: [APP_DIR],
loader: 'babel-loader',
query: {
plugins: [
'transform-object-rest-spread'
],
presets: [
'react',
'env'
]
}
}, {
test: /\.(css|less)$/,
loader: "style-loader!css-loader!less-loader"
}, {
test: /\.(jpe?g|png|svg)$/,
loader: "file-loader?publicPath=public/"
}, {
test: /\.(woff|woff2|eot|ttf)$/,
loader: 'url-loader?limit=100000'
}]
},
plugins: [new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})]
};
module.exports = config;