/
home
/
techb158
/
balavpn.abdallabala.com
/
node_modules
/
next
/
dist
/
esm
/
client
/
components
/
/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/client/components
mkdir
upload
Name
Size
Mode
Actions
builtin/
-
0777
rm
errors/
-
0777
rm
http-access-fallback/
-
0777
rm
metadata/
-
0777
rm
router-reducer/
-
0777
rm
segment-cache-impl/
-
0777
rm
styles/
-
0777
rm
app-router-announcer.js
2757
0666
edit
dl
rm
app-router-announcer.js.map
4660
0666
edit
dl
rm
app-router-headers.js
1675
0666
edit
dl
rm
app-router-headers.js.map
3014
0666
edit
dl
rm
app-router-instance.js
13037
0666
edit
dl
rm
app-router-instance.js.map
21131
0666
edit
dl
rm
app-router.js
23067
0666
edit
dl
rm
app-router.js.map
35012
0666
edit
dl
rm
bailout-to-client-rendering.js
1236
0666
edit
dl
rm
bailout-to-client-rendering.js.map
1706
0666
edit
dl
rm
bfcache.js
4568
0666
edit
dl
rm
bfcache.js.map
6394
0666
edit
dl
rm
client-page.js
2519
0666
edit
dl
rm
client-page.js.map
3919
0666
edit
dl
rm
client-segment.js
2106
0666
edit
dl
rm
client-segment.js.map
3099
0666
edit
dl
rm
dev-root-http-access-fallback-boundary.js
901
0666
edit
dl
rm
dev-root-http-access-fallback-boundary.js.map
1292
0666
edit
dl
rm
error-boundary.js
4730
0666
edit
dl
rm
error-boundary.js.map
7454
0666
edit
dl
rm
forbidden.js
1543
0666
edit
dl
rm
forbidden.js.map
1988
0666
edit
dl
rm
handle-isr-error.js
709
0666
edit
dl
rm
handle-isr-error.js.map
1316
0666
edit
dl
rm
hooks-server-context.js
534
0666
edit
dl
rm
hooks-server-context.js.map
1133
0666
edit
dl
rm
is-next-router-error.js
481
0666
edit
dl
rm
is-next-router-error.js.map
922
0666
edit
dl
rm
layout-router.js
26406
0666
edit
dl
rm
layout-router.js.map
37850
0666
edit
dl
rm
links.js
12533
0666
edit
dl
rm
links.js.map
21060
0666
edit
dl
rm
match-segments.js
524
0666
edit
dl
rm
match-segments.js.map
1034
0666
edit
dl
rm
nav-failure-handler.js
1614
0666
edit
dl
rm
nav-failure-handler.js.map
2827
0666
edit
dl
rm
navigation-untracked.js
2397
0666
edit
dl
rm
navigation-untracked.js.map
3374
0666
edit
dl
rm
navigation.js
9118
0666
edit
dl
rm
navigation.js.map
12807
0666
edit
dl
rm
navigation.react-server.js
1944
0666
edit
dl
rm
navigation.react-server.js.map
2768
0666
edit
dl
rm
noop-head.js
94
0666
edit
dl
rm
noop-head.js.map
233
0666
edit
dl
rm
not-found.js
1356
0666
edit
dl
rm
not-found.js.map
1752
0666
edit
dl
rm
promise-queue.js
3712
0666
edit
dl
rm
promise-queue.js.map
3591
0666
edit
dl
rm
redirect-boundary.js
2222
0666
edit
dl
rm
redirect-boundary.js.map
3940
0666
edit
dl
rm
redirect-error.js
1123
0666
edit
dl
rm
redirect-error.js.map
2103
0666
edit
dl
rm
redirect-status-code.js
425
0666
edit
dl
rm
redirect-status-code.js.map
319
0666
edit
dl
rm
redirect.js
3822
0666
edit
dl
rm
redirect.js.map
5837
0666
edit
dl
rm
render-from-template-context.js
456
0666
edit
dl
rm
render-from-template-context.js.map
667
0666
edit
dl
rm
segment-cache.js
6004
0666
edit
dl
rm
segment-cache.js.map
8823
0666
edit
dl
rm
static-generation-bailout.js
466
0666
edit
dl
rm
static-generation-bailout.js.map
877
0666
edit
dl
rm
unauthorized.js
1570
0666
edit
dl
rm
unauthorized.js.map
2020
0666
edit
dl
rm
unrecognized-action-error.js
923
0666
edit
dl
rm
unrecognized-action-error.js.map
1478
0666
edit
dl
rm
unresolved-thenable.js
227
0666
edit
dl
rm
unresolved-thenable.js.map
441
0666
edit
dl
rm
unstable-rethrow.browser.js
433
0666
edit
dl
rm
unstable-rethrow.browser.js.map
841
0666
edit
dl
rm
unstable-rethrow.js
712
0666
edit
dl
rm
unstable-rethrow.js.map
1112
0666
edit
dl
rm
unstable-rethrow.server.js
854
0666
edit
dl
rm
unstable-rethrow.server.js.map
1566
0666
edit
dl
rm
use-action-queue.js
1921
0666
edit
dl
rm
use-action-queue.js.map
3273
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/client/components/redirect.js
(3822B)
import { RedirectStatusCode } from './redirect-status-code'; import { RedirectType, isRedirectError, REDIRECT_ERROR_CODE } from './redirect-error'; const actionAsyncStorage = typeof window === 'undefined' ? require('../../server/app-render/action-async-storage.external').actionAsyncStorage : undefined; export function getRedirectError(url, type, statusCode) { if (statusCode === void 0) statusCode = RedirectStatusCode.TemporaryRedirect; const error = Object.defineProperty(new Error(REDIRECT_ERROR_CODE), "__NEXT_ERROR_CODE", { value: "E394", enumerable: false, configurable: true }); error.digest = REDIRECT_ERROR_CODE + ";" + type + ";" + url + ";" + statusCode + ";"; return error; } /** * This function allows you to redirect the user to another URL. It can be used in * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). * * - In a Server Component, this will insert a meta tag to redirect the user to the target page. * - In a Route Handler or Server Action, it will serve a 307/303 to the caller. * - In a Server Action, type defaults to 'push' and 'replace' elsewhere. * * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect) */ export function redirect(/** The URL to redirect to */ url, type) { var _actionAsyncStorage_getStore; type != null ? type : type = (actionAsyncStorage == null ? void 0 : (_actionAsyncStorage_getStore = actionAsyncStorage.getStore()) == null ? void 0 : _actionAsyncStorage_getStore.isAction) ? RedirectType.push : RedirectType.replace; throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect); } /** * This function allows you to redirect the user to another URL. It can be used in * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). * * - In a Server Component, this will insert a meta tag to redirect the user to the target page. * - In a Route Handler or Server Action, it will serve a 308/303 to the caller. * * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect) */ export function permanentRedirect(/** The URL to redirect to */ url, type) { if (type === void 0) type = RedirectType.replace; throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect); } export function getURLFromRedirectError(error) { if (!isRedirectError(error)) return null; // Slices off the beginning of the digest that contains the code and the // separating ';'. return error.digest.split(';').slice(2, -2).join(';'); } export function getRedirectTypeFromError(error) { if (!isRedirectError(error)) { throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { value: "E260", enumerable: false, configurable: true }); } return error.digest.split(';', 2)[1]; } export function getRedirectStatusCodeFromError(error) { if (!isRedirectError(error)) { throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { value: "E260", enumerable: false, configurable: true }); } return Number(error.digest.split(';').at(-2)); } //# sourceMappingURL=redirect.js.map
Save
cmd:
run