We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e785912 commit 7041027Copy full SHA for 7041027
1 file changed
Site/src/routes/(rbxclient)/game/gameserver/+server.ts
@@ -1,12 +1,9 @@
1
-import { error } from "@sveltejs/kit"
2
import config from "$lib/server/config"
3
import { SignData } from "$lib/server/sign"
4
-import { db } from "$lib/server/surreal"
5
-import placeQuery from "./place.surql"
6
7
-export async function GET({ url }) {
8
- const port = 53640
+const port = 53640
9
+export async function GET() {
10
const scriptFile = Bun.file("../data/server/loadscripts/host.lua")
11
const script = (await scriptFile.text())
12
.replaceAll("_BASE_URL", `"${config.Domain}"`)
0 commit comments