You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by si...@apache.org on 2021/10/07 00:40:14 UTC

[hudi] branch asf-site updated: [HUDI-2510] Added a quickstart redirect page to fix broken external links in GCP docs (#3753)

This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new c6512ea  [HUDI-2510] Added a quickstart redirect page to fix broken external links in GCP docs (#3753)
c6512ea is described below

commit c6512ea308f8b45b718018c9309364b6e2c8a19a
Author: Vinoth Govindarajan <vi...@uber.com>
AuthorDate: Wed Oct 6 17:39:57 2021 -0700

    [HUDI-2510] Added a quickstart redirect page to fix broken external links in GCP docs (#3753)
---
 website/src/pages/quickstart.md | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/website/src/pages/quickstart.md b/website/src/pages/quickstart.md
new file mode 100644
index 0000000..a5ccbbe
--- /dev/null
+++ b/website/src/pages/quickstart.md
@@ -0,0 +1,14 @@
+---
+id: quickstart
+title: quickstart
+---
+
+import {Route} from '@docusaurus/router';
+
+<Route
+path={'/*'}
+component={() => {
+global.window && (global.window.location.href = '/docs/quick-start-guide');
+return null;
+}}
+/>