forked from hotpi/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
54 lines (50 loc) · 1.39 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
var webpack = require('webpack');
var path = require('path');
var fs = require('fs');
var nodeModules = {};
// note the path.resolve(__dirname, ...) part
// without it, eslint-import-resolver-webpack fails
// since eslint might be invoked with different cwd
// fs.readdirSync(path.resolve(__dirname, 'node_modules'))
// .filter(x => ['.bin'].indexOf(x) === -1)
// .forEach(mod => { nodeModules[mod] = `commonjs ${mod}`; });
fs.readdirSync(path.resolve(__dirname, 'node_modules'))
.filter(function(x) {
return ['.bin'].indexOf(x) === -1;
})
.forEach(function(mod) {
nodeModules[mod] = 'commonjs ' + mod;
});
module.exports =
{
// The configuration for the server-side rendering
name: 'server',
target: 'node',
entry: [
/*'webpack/hot/poll?1000',*/
'./index'
],
output: {
path: path.join(__dirname, 'build'),
filename: 'backend.js',
publicPath: '/static/'
},
externals: nodeModules,
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel'
},
{
test: /\.json$/,
loader: 'json-loader'
},
]
},
plugins: [
new webpack.BannerPlugin('require("source-map-support").install();',
{ raw: true, entryOnly: false })
],
devtool: 'sourcemap'
};