Commit 108ef722 authored by Roopashree L's avatar Roopashree L
Browse files

added subdomain route to react

No related merge requests found
Showing with 12 additions and 0 deletions
+12 -0
......@@ -69,6 +69,11 @@
console = console || {};
console.log = function () { };
}
(() => {
if (location.pathname === '/') {
window.location.href = location.origin + '/app';
}
})();
</script>
<div id="backdrop" className="api_spinner">
<div
......
......@@ -59,5 +59,12 @@
}, 1000)
}
</script> -->
<script type="text/javascript">
(() => {
if (location.pathname === '/') {
window.location.href = location.origin + '/app';
}
})
</script>
</body>
</html>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment