10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: "./src/mailgo.js",
|
|
output: {
|
|
filename: "main.js",
|
|
path: path.resolve(__dirname, "dist")
|
|
}
|
|
};
|