diff --git a/static/index.html b/static/index.html index fa44c3e..16a9a61 100644 --- a/static/index.html +++ b/static/index.html @@ -11,6 +11,6 @@ - + diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..67e7b8c --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,9 @@ +const path = require('path'); + +module.exports = { + entry: path.resolve(__dirname, 'src', 'index.js'), + output: { + filename: 'bundle.js', + path: path.resolve(__dirname, 'dist'), + }, +};