This commit is contained in:
Joe
2018-06-27 19:18:51 -05:00
commit 83c9051ace
5 changed files with 903 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',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist')
}
};