diff --git a/.gitignore b/.gitignore index 590e8b3..062d835 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ +# Output folders +/dist/ + # Node modules /node_modules/ diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..8ed743c --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,9 @@ +var path = require('path'); + +module.exports = { + entry: './js/app', + output: { + path: path.resolve('dist'), + filename: 'bundle.js', + }, +};