mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: connect-history-api-fallback 挪回 webpack,vite 后续再考虑支持
This commit is contained in:
parent
562fc003b2
commit
0100b10567
@ -42,6 +42,7 @@
|
||||
"babel-plugin-import": "1.13.3",
|
||||
"cli-highlight": "^2.1.4",
|
||||
"cliui": "7.0.4",
|
||||
"connect-history-api-fallback": "^1.6.0",
|
||||
"copy-webpack-plugin": "^7.0.0",
|
||||
"css-loader": "^5.0.1",
|
||||
"css-minimizer-webpack-plugin": "^3.0.0",
|
||||
|
@ -0,0 +1,23 @@
|
||||
import { extname } from 'path';
|
||||
import historyFallback from 'connect-history-api-fallback';
|
||||
|
||||
const ASSET_EXT_NAMES = ['.ico', '.png', '.jpg', '.jpeg', '.gif', '.svg'];
|
||||
const SKIP_PATHS_PREFIX = ['/@'];
|
||||
|
||||
const proxyMiddleware = (api) => (req, res, next) => {
|
||||
const proxyConfig = api.config.proxy;
|
||||
if (proxyConfig && Object.keys(proxyConfig).some((path) => req.url.startsWith(path))) {
|
||||
return next();
|
||||
}
|
||||
if (SKIP_PATHS_PREFIX.find((prefix) => req.url.startsWith(prefix))) {
|
||||
return next();
|
||||
}
|
||||
if (ASSET_EXT_NAMES.includes(extname(req.url))) {
|
||||
return next();
|
||||
}
|
||||
|
||||
const history = historyFallback();
|
||||
history(req, res, next);
|
||||
};
|
||||
|
||||
export default proxyMiddleware;
|
@ -36,6 +36,7 @@ export default (api) => {
|
||||
],
|
||||
async fn({ args = {} }) {
|
||||
const { cleanTmpPathExceptCache, getBundleAndConfigs } = require('../buildDevUtils');
|
||||
const connectHistoryMiddleware = require('./connectHistoryMiddleware').default;
|
||||
|
||||
port = await getPort(args.port || api.config.devServer?.port);
|
||||
changePort(port);
|
||||
@ -80,7 +81,7 @@ export default (api) => {
|
||||
port,
|
||||
proxy: api.config.proxy,
|
||||
https: isHTTPS,
|
||||
beforeMiddlewares: [...beforeMiddlewares],
|
||||
beforeMiddlewares: [connectHistoryMiddleware(api), ...beforeMiddlewares],
|
||||
afterMiddlewares: [...middlewares],
|
||||
customerDevServerConfig: api.config.devServer,
|
||||
});
|
||||
|
@ -28,7 +28,6 @@
|
||||
"@fesjs/compiler": "^2.0.5",
|
||||
"@fesjs/utils": "^2.0.4",
|
||||
"body-parser": "^1.19.0",
|
||||
"connect-history-api-fallback": "^1.6.0",
|
||||
"cookie": "^0.4.2",
|
||||
"cookie-parser": "^1.4.5",
|
||||
"envinfo": "^7.7.3",
|
||||
|
@ -1,25 +1,3 @@
|
||||
import { extname } from 'path';
|
||||
import historyFallback from 'connect-history-api-fallback';
|
||||
|
||||
const ASSET_EXT_NAMES = ['.ico', '.png', '.jpg', '.jpeg', '.gif', '.svg'];
|
||||
const SKIP_PATHS_PREFIX = ['/@'];
|
||||
|
||||
const proxyMiddleware = (api) => (req, res, next) => {
|
||||
const proxyConfig = api.config.proxy;
|
||||
if (proxyConfig && Object.keys(proxyConfig).some((path) => req.url.startsWith(path))) {
|
||||
return next();
|
||||
}
|
||||
if (SKIP_PATHS_PREFIX.find((prefix) => req.url.startsWith(prefix))) {
|
||||
return next();
|
||||
}
|
||||
if (ASSET_EXT_NAMES.includes(extname(req.url))) {
|
||||
return next();
|
||||
}
|
||||
|
||||
const history = historyFallback();
|
||||
history(req, res, next);
|
||||
};
|
||||
|
||||
export default (api) => {
|
||||
api.describe({
|
||||
key: 'proxy',
|
||||
@ -32,6 +10,4 @@ export default (api) => {
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
api.addBeforeMiddlewares(() => proxyMiddleware(api));
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user