mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 13:57:52 -04:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { createServerFn } from "@tanstack/react-start";
|
|
import { config } from "~/server/core/config";
|
|
|
|
export const getOrigin = createServerFn().handler(() => {
|
|
return config.baseUrl;
|
|
});
|