[fix] nginx continuously rewriting and reloading on index page of spaces app (#2236)

* chore: shifted index page to /home route

* chore: added rewrite logic, to rewrite index to /home

* chore: routed home to login route as login page

* chore: updated nginx config to route to login

* chore: updated path for home
This commit is contained in:
Henit Chobisa 2023-09-26 13:46:38 +05:30 committed by GitHub
parent d38594376b
commit 88a35efa06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 13 deletions

View file

@ -0,0 +1,8 @@
import React from "react";
// components
import { LoginView } from "components/views";
const LoginPage = () => <LoginView />;
export default LoginPage;