mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
replaced remix with react-router
This commit is contained in:
@@ -37,7 +37,10 @@ const envs = {
|
||||
// cli telemetry
|
||||
cli_telemetry: {
|
||||
key: "BKND_CLI_TELEMETRY",
|
||||
validate: (v: unknown) => {
|
||||
validate: (v: unknown): boolean | undefined => {
|
||||
if (typeof v === "undefined") {
|
||||
return undefined;
|
||||
}
|
||||
return is_toggled(v, true);
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user