diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..81cffa2 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,17 @@ + +// +// Use the path module so that this will work on Windows systems +// +var path = require('path'); + +// +// Compile main.js (and its dependencies) into dist/bundle.js. +// +module.exports = { + entry: './main.js', + output: { + filename: 'bundle.js', + path: path.resolve(__dirname, 'dist') + } +}; +