1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/webpack.config.js
2020-02-20 08:30:13 +01:00

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.
}
};