-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
47 lines (39 loc) · 1.08 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
var path = require('path');
var _ = require('lodash');
var webpack = require('webpack');
const devBuild = process.env.NODE_ENV !== 'production';
module.exports = {
entry: [
'./src/index'
],
output: {
path: path.join(__dirname, 'static'),
filename: 'bundle.js',
publicPath: '/static/'
},
plugins: _.compact([
new webpack.NoErrorsPlugin(),
devBuild ? null : new webpack.optimize.UglifyJsPlugin()
]),
resolve: {
extensions: ['', '.js'],
root: [
path.resolve('./src')
],
modulesDirectories: [
'node_modules'
],
alias: {
'react-chatview': path.join(__dirname, 'vendor/react-chatview/src/react-chatview'),
}
},
module: {
loaders: [
{ test: /\.js$/, loaders: ['babel'], include: [path.join(__dirname, 'src'), path.join(__dirname, 'vendor')] },
{ test: /\.less$/, loader: 'style!css!less' },
{ test: require.resolve('moment'), loader: 'expose?moment' },
{ test: /node_modules\/react-cursor/, loader: 'babel' }
]
},
devtool: devBuild ? 'eval-cheap-module-source-map' : undefined
};