Added webpack

This commit is contained in:
MaxRobinsonTheGreat
2020-06-30 13:51:32 -06:00
parent 847ff76f84
commit 8d208ca9cc
5 changed files with 1719 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'),
},
};