We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3160962 commit c1e09f3Copy full SHA for c1e09f3
src/lib/steps/setupRedirects.js
@@ -74,13 +74,13 @@ const setupRedirects = async (publishPath) => {
74
const basePathSortFunc = (a, b) => {
75
if (a.target.includes(basePath) && b.target.includes(basePath)) {
76
return 0
77
- } if (a.target.includes(basePath) && !b.target.includes(basePath)) {
+ }
78
+ if (a.target.includes(basePath) && !b.target.includes(basePath)) {
79
return -1
- // } else if (!a.target.includes(basePath) && b.target.includes(basePath)) {
80
- // return 0
81
- }
82
- return 1
83
-
+ // } else if (!a.target.includes(basePath) && b.target.includes(basePath)) {
+ // return 0
+ return 1
84
}
85
const allRedirects = hasBasePath
86
? [...sortedStaticRedirects.sort(basePathSortFunc), ...sortedDynamicRedirects.sort(basePathSortFunc)]
0 commit comments