config webpack

This commit is contained in:
Matteo Manzinello 2019-05-28 09:13:07 +02:00
parent ca57f6df2f
commit a4d4680fa3
2 changed files with 10 additions and 0 deletions

1
dist/main.js vendored Normal file

File diff suppressed because one or more lines are too long

9
webpack.config.js Normal file
View File

@ -0,0 +1,9 @@
const path = require("path");
module.exports = {
entry: "./src/mailgo.js",
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist")
}
};