mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 13:49:54 -06:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import "server-only";
|
|
import { SURVEY_URL, WEBAPP_URL } from "./constants";
|
|
|
|
/**
|
|
* Returns the base URL for public surveys
|
|
* Uses SURVEY_URL if set, otherwise falls back to WEBAPP_URL
|
|
*/
|
|
export const getSurveyDomain = (): string => {
|
|
return SURVEY_URL || WEBAPP_URL;
|
|
};
|