自定义组件库-封装第三方图表,如echarts
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.dev.config.js 341B

123456789101112
  1. let config = require("./config");
  2. module.exports = {
  3. mode: 'development',
  4. devtool: 'eval-source-map',
  5. entry: config.entryDev,
  6. output: config.outputDev,
  7. devServer:config.devServer,
  8. plugins: config.pluginsDev,
  9. module: config.moduleBaseDev,
  10. optimization: config["optimizationDev"],
  11. resolve: config.resolve
  12. };