2024-08-15 23:33:01 +01:00
|
|
|
|
2024-08-15 23:05:14 +01:00
|
|
|
import process from 'process';
|
|
|
|
|
|
2024-08-15 23:33:01 +01:00
|
|
|
export default function handler(req, res) {
|
|
|
|
|
const envVars = {
|
2024-08-15 23:05:14 +01:00
|
|
|
BACKEND_API_URL: process.env.BACKEND_API_URL,
|
|
|
|
|
BACKEND_WS_URL: process.env.BACKEND_WS_URL
|
2024-08-15 23:33:01 +01:00
|
|
|
}
|
|
|
|
|
res.status(200).json(envVars);
|
2024-08-15 23:05:14 +01:00
|
|
|
}
|