您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
292 B

  1. const merge = require("webpack-merge");
  2. const common = require("./webpack.common.js");
  3. module.exports = merge(common, {
  4. mode: "development",
  5. devtool: "inline-source-map",
  6. devServer: {
  7. host: "0.0.0.0",
  8. port: 8000,
  9. contentBase: "./dist",
  10. historyApiFallback: true
  11. }
  12. });