webpack.common.js 189 B

1234567891011
  1. const commonPaths = require("./common-paths");
  2. const config = {
  3. entry: "./src/",
  4. output: {
  5. filename: "bundle.js",
  6. path: commonPaths.outputPath
  7. }
  8. };
  9. module.exports = config;