forked from artyomtrityak/react-webpack-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
74 lines (72 loc) · 1.87 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
var webpack = require('webpack'),
path = require('path');
var VENDOR_LIBS = [
'react',
'react-router',
'flux',
'immutable',
'jquery',
'bluebird',
'eventemitter2',
'classnames',
'leaflet',
'firebase',
'react-pure',
'spin.js'
];
var embedFileSize = 65536;
module.exports = {
entry: {
app: './app/javascript/routes.jsx',
vendor: VENDOR_LIBS
},
output: {
path: path.join(__dirname, '/app/build'),
filename: "bundle.js",
publicPath: 'http://localhost:8080/app/build/',
},
resolve: {
root: path.resolve('./app/javascript'),
extensions: ['', '.js', '.jsx', '.json'],
modulesDirectories: ['node_modules'],
},
module: {
preLoaders: [
{
test: /\.jsx$/,
loaders: ['eslint'],
include: [new RegExp(path.join(__dirname, 'app'))],
exclude: /node_modules/
}
],
loaders: [
{
test: /\.jsx?$/,
loaders: ['babel'],
exclude: /node_modules/
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
},
{
test: /\.(otf|eot|ttf|woff|woff2)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url?limit=' + embedFileSize
}
]
},
eslint: {
configFile: '.eslintrc',
emitError: true
},
plugins: [
new webpack.optimize.CommonsChunkPlugin(
/* chunkName= */"vendor", /* filename= */"vendor.bundle.js"
)
],
devtool: 'source-map' // source maps with debugging, slow
//devtool: 'eval-source-map'
};