Moved DISABLE_LOGIN check to getServerSideProps.

This commit is contained in:
Mike Cao 2022-08-01 18:42:07 -07:00
parent ab1e49e703
commit 68d35c0fc4
2 changed files with 8 additions and 5 deletions

View File

@ -35,9 +35,6 @@ if (process.env.FORCE_SSL) {
module.exports = {
env: {
currentVersion: pkg.version,
loginDisabled: process.env.DISABLE_LOGIN,
updatesDisabled: process.env.DISABLE_UPDATES,
telemetryDisabled: process.env.DISABLE_TELEMETRY,
},
basePath: process.env.BASE_PATH,
output: 'standalone',

View File

@ -2,8 +2,8 @@ import React from 'react';
import Layout from 'components/layout/Layout';
import LoginForm from 'components/forms/LoginForm';
export default function LoginPage() {
if (process.env.loginDisabled) {
export default function LoginPage({ loginDisabled }) {
if (loginDisabled) {
return null;
}
@ -13,3 +13,9 @@ export default function LoginPage() {
</Layout>
);
}
export async function getServerSideProps() {
return {
props: { loginDisabled: !!process.env.DISABLE_LOGIN },
};
}