fix: Hotfix/main - 404 workflows (#9678)
parent
804787f2a3
commit
4748641c22
|
@ -188,7 +188,7 @@ const nextConfig = {
|
||||||
// It would also not match /free/30min/embed because we are ensuring just two slashes
|
// It would also not match /free/30min/embed because we are ensuring just two slashes
|
||||||
// ?!book ensures it doesn't match /free/book page which doesn't have a corresponding new-booker page.
|
// ?!book ensures it doesn't match /free/book page which doesn't have a corresponding new-booker page.
|
||||||
// [^/]+ makes the RegExp match the full path, it seems like a partial match doesn't work.
|
// [^/]+ makes the RegExp match the full path, it seems like a partial match doesn't work.
|
||||||
const userTypeRouteRegExp = `/:user((?!${pages.join("/|")}$)[^/]*)/:type((?!book)[^/]+)`;
|
const userTypeRouteRegExp = `/:user((?!${pages.join("/|")})[^/]*)/:type((?!book)[^/]+)`;
|
||||||
const teamTypeRouteRegExp = "/team/:slug/:type((?!book)[^/]+)";
|
const teamTypeRouteRegExp = "/team/:slug/:type((?!book)[^/]+)";
|
||||||
const privateLinkRouteRegExp = "/d/:link/:slug((?!book)[^/]+)";
|
const privateLinkRouteRegExp = "/d/:link/:slug((?!book)[^/]+)";
|
||||||
let rewrites = [
|
let rewrites = [
|
||||||
|
|
Loading…
Reference in New Issue