mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-17 15:01:08 +02:00
11 lines
332 B
JavaScript
11 lines
332 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,
|
|
NEXT_PUBLIC_APP_VERSION: process.env.npm_package_version
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|