Initial commit

This commit is contained in:
2017-09-19 17:51:06 +02:00
commit cf80a0df03
4 changed files with 61 additions and 0 deletions

9
webpack.config.js Normal file
View File

@@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
entry: "./src/index.js", // bundle's entry point
output: {
path: path.resolve(__dirname, 'dist'), // output directory
filename: 'bundle.js' // name of the generated bundle
}
};