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.
 
 
 
 
 
 

14 line
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. });