You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
572 B
JavaScript
33 lines
572 B
JavaScript
var webpack = require('webpack');
|
|
var path = require('path');
|
|
|
|
var BUILD_DIR = path.resolve(__dirname, 'client/public');
|
|
var APP_DIR = path.resolve(__dirname, 'client/app');
|
|
|
|
var config = {
|
|
entry: APP_DIR + '/index.jsx',
|
|
output: {
|
|
path: BUILD_DIR,
|
|
filename: 'bundle.js'
|
|
},
|
|
module : {
|
|
loaders : [
|
|
{
|
|
test : /\.jsx?/,
|
|
include : APP_DIR,
|
|
loader : 'babel'
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
}
|
|
})
|
|
]
|
|
};
|
|
|
|
|
|
module.exports = config;
|