vue-router配置后地址栏输入跳转不成功问题
在起服务的js中增加 connect-history-api-fallbackconst history = require('connect-history-api-fallback');// 在静态页面之前,这一句:app.use('/static', express.static(__dirname + '/public'))之前设置historyconst historyCo...
·
在起服务的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));
更多推荐
已为社区贡献2条内容
所有评论(0)