Add an example of console.log

Also clean up some other exampels
This commit is contained in:
Alex Crichton
2018-03-09 10:25:19 -08:00
parent 8b74c6c6ec
commit d8e5930799
17 changed files with 111 additions and 21 deletions

View File

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};