mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-19 15:54:17 +02:00
* feat(client): Disable Sign Up page if `DISABLE_SIGNUP` is `true` * chore(docs): Add `NEXT_PUBLIC_DISABLE_SIGNUP` environment variable * chore: Add `NEXT_PUBLIC_DISABLE_SIGNUP` environment variable * fix(client): Add missed imports * chore: Set correct order for new environment variable * fix(client): Use corrent login link * chore(client): Disabling the text about the possibility to create an account if this possibility is disabled
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
env: {
|
|
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL,
|
|
NEXT_PUBLIC_DISABLE_SIGNUP: process.env.NEXT_PUBLIC_DISABLE_SIGNUP,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|