This commit is contained in:
Daniil Gazizullin 2025-11-24 14:01:06 +03:00
parent 079982f94f
commit f28b9ee9f7
No known key found for this signature in database
4 changed files with 7595 additions and 5327 deletions

View File

@ -8,17 +8,17 @@ module.exports = {
},
},
navigations: {
"hello.main": "/",
"hypershelf.main": "/",
},
features: {
hello: {
hypershelf: {
enableRedirectNowButton: {
value: "true",
},
},
},
config: {
"hello.redirectTarget": "https://example.com",
"hello.redirectDelayMs": "5000",
"hypershelf.redirectTarget": "https://example.com",
"hypershelf.redirectDelayMs": "5000",
},
};

7589
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5321
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -4,8 +4,8 @@ type RedirectPageProps = {
enableRedirectNowButton: boolean;
};
const REDIRECT_DELAY_MS = 5000;
const TARGET_URL = "https://example.com";
const REDIRECT_DELAY_MS = 10000;
const TARGET_URL = "https://hypershelf.globalservices.stf";
export function RedirectPage({
enableRedirectNowButton