rybbit/client/next.config.js
2025-02-06 22:47:39 -08:00

9 lines
199 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
env: {
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL,
},
};
module.exports = nextConfig;