Add an example using Math

This commit is contained in:
Alex Crichton
2018-03-21 10:03:40 -07:00
parent 8b3ca9b85c
commit 758bb3c2c3
12 changed files with 118 additions and 0 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"
};