mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
28 lines
504 B
JavaScript
28 lines
504 B
JavaScript
// docs: http://webpack.github.io/docs/configuration.html
|
|
|
|
module.exports = {
|
|
|
|
context: __dirname + '/public',
|
|
entry: './js/app',
|
|
|
|
output: {
|
|
path: __dirname + '/public/js',
|
|
filename: 'bundle.js',
|
|
publicPath: '/js/'
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx']
|
|
},
|
|
|
|
module: {
|
|
loaders: [
|
|
{ test: /\.jsx$/, loader: 'jsx' }
|
|
]
|
|
},
|
|
|
|
externals: {
|
|
// stuff not in node_modules can be resolved here.
|
|
}
|
|
|
|
}; |