Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

redirects.js 1.4 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. if (/\/reference\/open_data_science_formats/.test(location.pathname)) {
  2. location.href = location.origin + location.pathname.replace('/open_data_science_formats/', '/git-tracking/') + location.search + location.hash;
  3. }
  4. if (/\/tutorial\/$/.test(location.pathname)) {
  5. location.href = location.origin + location.pathname.replace(/\/?$/, '/overview/') + location.search + location.hash
  6. }
  7. if (/\/experiment-tutorial\/$/.test(location.pathname)) {
  8. location.href = location.origin + location.pathname.replace(/\/?$/, '/overview/') + location.search + location.hash;
  9. }
  10. if (/\/collaborating_on_dagshub/.test(location.pathname)) {
  11. location.href = location.origin + location.pathname.replace('/collaborating_on_dagshub/', '/reference/') + location.search + location.hash;
  12. }
  13. if (/\/integration-guide\/mlflow_tracking/.test(location.pathname)) {
  14. location.href = location.origin + location.pathname.replace('/integration-guide/', '/reference/') + location.search + location.hash;
  15. }
  16. if (/\/integration-guide\/jenkins/.test(location.pathname)) {
  17. location.href = location.origin + location.pathname.replace('/integration-guide/', '/reference/') + location.search + location.hash;
  18. }
  19. if (/\/integration-guide\/set-up-remote-storage-for-data-and-models/.test(location.pathname)) {
  20. location.href = location.origin + location.pathname.replace('/integration-guide/', '/reference/') + location.search + location.hash;
  21. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...