在起服务的js中增加 connect-history-api-fallback 

const history = require('connect-history-api-fallback');

// 在静态页面之前,这一句:app.use('/static', express.static(__dirname + '/public'))之前设置history
const historyConfig = {
  index: '/index.html'
};
app.use(history(historyConfig));

 

Logo

前往低代码交流专区

更多推荐