Skip to content
Fetching contributors…
Cannot retrieve contributors at this time
33 lines (31 sloc) 569 Bytes
var path = require('path');
module.exports = {
devtool: 'sourcemap',
entry: './client',
output: {
filename: 'bundle.js',
path: path.join(__dirname, '/public/js'),
publicPath: 'public/'
},
module: {
loaders: [
{
test: /\.jsx?$/,
include: [
path.join(__dirname, 'client/'),
path.join(__dirname, 'common/')
],
loaders: [
'babel-loader'
]
},
{
test: /\.json$/,
loaders: [
'json-loader'
]
}
]
},
plugins: []
};
Something went wrong with that request. Please try again.