app.use((req, res, next) => { if (req.useragent.isMobile) { res.sendFile('mobile_index.html', { root: buildPath }); } else { res.sendFile('index.html' ...
確定! 回上一頁