const path = require("path"); // NodeJS builtin. module.exports = { entry: "./src/", output: { filename: "bundle.js", path: path.join(__dirname, "dist") // path must be absolute. } };