-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
39 lines (38 loc) · 905 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
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: [
'./client/index'
],
output: {
path: path.resolve('./dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
resolve: {
root: path.resolve('./client'),
modulesDirectories: ['node_modules', 'client/components']
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [{
test: /\.js$/,
loaders: ['babel'],
exclude: /node_modules/,
include: __dirname
}, {
test: /\.less$/,
loader: 'style!css?modules&localIdentName=IP-[name]__[local]!less'
}, {
test: /\.css/,
loader: 'style!css?modules&localIdentName=IP-[name]__[local]'
}, {
test: /\.(eot|png|gif|jpg|svg|woff|woff2|ttf)(\?.*)?$/,
loader: 'file'
}]
}
};