Skip to main content

redirectTo

Redirect to a new page.

Parameters

interface Data {
page: string;
title?: string;
}
NameTypeRequiredDefaultDescription
pagenumberYesPath of the redirect page
titlestringNoText for the navigation bar

Example

import { redirectTo } from "minip-bridge";

redirectTo({
page: "index.html?page=redirect",
title: "Redirect",
});