diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..0d77711 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,14 @@ +// This file 'webpack.config.js' is part of an example for building a minimalistic React front-end +// app step by step as outlined in the tutorial blog at +// http://maratbn.com/blogs/2017/01/14/minimalistic-react-webapp/ + + +const path = require('path'); + +module.exports = { + entry: [path.join(__dirname, 'webpack_in', 'entry.js')], + output: { + path: path.join(__dirname, 'webpack_out'), + filename: 'minimalistic_react.js' + } + };