forked from dustingetz/messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (37 loc) · 1.12 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
require('babel-polyfill');
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.NoEmitOnErrorsPlugin(),
devBuild ? null : new webpack.optimize.UglifyJsPlugin({ sourceMap: true })
]),
resolve: {
modules: [
path.join(__dirname, "src"),
"node_modules"
],
alias: {
'react-chatview': path.join(__dirname, 'vendor/react-chatview/src/react-chatview'),
}
},
module: {
rules: [
{ test: /\.js$/, use: ['babel-loader'], include: [path.join(__dirname, 'src'), path.join(__dirname, 'vendor')] },
{ test: /\.less$/, use: ['style-loader', 'css-loader', 'less-loader'] },
{ test: require.resolve('moment'), use: ['expose-loader?moment'] },
{ test: /node_modules\/react-cursor/, use: ['babel-loader'] }
]
},
devtool: devBuild ? 'eval-cheap-module-source-map' : undefined
};