mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
28 lines
508 B
JavaScript
28 lines
508 B
JavaScript
|
// docs: http://webpack.github.io/docs/configuration.html
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
context: __dirname + '/public',
|
||
|
entry: './js/unleash',
|
||
|
|
||
|
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.
|
||
|
}
|
||
|
|
||
|
};
|