Open
Description
此处是的node端运行的代码
https://github.com/qq282126990/musicApp/blob/mpa/prod.server.js
可能是由于打包后的路径不正确导致的
下面是官网处理history 的方法
// 处理HTML5 history API,映射例如/home路由到/home/index.html
let rewrites = Object.keys(utils.getEntries('./src/pages', 'entry.js'))
.map(function (entry) {
return {
from: new RegExp('/' + entry),
to: '/' + entry + '/index.html'
};
});
app.use(require('connect-history-api-fallback')({
htmlAcceptHeaders: ['text/html'],
rewrites: rewrites
}));
这样会导致正则抓取不到打包后的html
Metadata
Metadata
Assignees
Labels
No labels