11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "./dist/mailgo.min.js",
|
|
output: {
|
|
filename: "mailgo.js",
|
|
path: path.resolve(__dirname)
|
|
}
|
|
};
|