UNPKG

256 BJavaScriptView Raw
1var webpack = require('webpack');
2
3module.exports = {
4 entry: './modules/index',
5 output: {
6 filename: 'dist/ReactHotAPI.js',
7 libraryTarget: 'umd',
8 library: 'ReactHotAPI'
9 },
10 plugins: [
11 new webpack.optimize.OccurenceOrderPlugin()
12 ]
13};
\No newline at end of file