fix a dev change that stubbed most of account frontend endpoints
This commit is contained in:
parent
54f1f4e325
commit
fee7ba3d74
|
@ -1,6 +1,6 @@
|
||||||
import ky from "ky/umd";
|
import ky from "ky/umd";
|
||||||
|
|
||||||
const isProduction = false; // process.env.NODE_ENV === "production";
|
const isProduction = process.env.NODE_ENV === "production";
|
||||||
|
|
||||||
export default function authServerSideProps(getServerSideProps) {
|
export default function authServerSideProps(getServerSideProps) {
|
||||||
return function authenticate(context) {
|
return function authenticate(context) {
|
||||||
|
|
Reference in New Issue