6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
import { createServerFn } from "@tanstack/react-start";
|
|
import { config } from "~/server/core/config";
|
|
|
|
export const getOrigin = createServerFn().handler(() => {
|
|
return config.baseUrl;
|
|
});
|