You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webpack.dist.config.js 293B

1234567891011
  1. let config = require("./config");
  2. module.exports = {
  3. mode:"production",
  4. entry: config.entryDist,
  5. output: config.outputDist,
  6. externals: config.externals,
  7. plugins: config.pluginDist,
  8. module: config.moduleBaseDist,
  9. optimization:config["optimizationDist"]
  10. };