Skip to content

Commit

Permalink
Added 'webpack.config.js' with just the initial Webpack configuration…
Browse files Browse the repository at this point in the history
… to pack 'webpack_in/entry.js' into 'webpack_out/minimalistic_react.js'.
  • Loading branch information
maratbn committed Jan 18, 2017
1 parent c636c0e commit 400ee13
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 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'
}
};

0 comments on commit 400ee13

Please sign in to comment.