webpack.common.js 226 B

1234567891011
  1. const path = require("path"); // NodeJS builtin.
  2. const config = {
  3. entry: "./src/",
  4. output: {
  5. filename: "bundle.js",
  6. path: path.join(__dirname, "../dist") // path must be absolute.
  7. }
  8. };
  9. module.exports = config;