diff options
| author | Frank <[email protected]> | 2025-09-02 20:01:11 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-02 20:01:13 -0400 |
| commit | 4e629c5b64d52f6633e5e1a54d250b4b57c92604 (patch) | |
| tree | a786a64484e161b4d2f0ac25a97bb3fa874cb861 /sst.config.ts | |
| parent | 4624f0a260c36d55756b6f53641daacb878f9d92 (diff) | |
| download | opencode-4e629c5b64d52f6633e5e1a54d250b4b57c92604.tar.gz opencode-4e629c5b64d52f6633e5e1a54d250b4b57c92604.zip | |
wip: cloud
Diffstat (limited to 'sst.config.ts')
| -rw-r--r-- | sst.config.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sst.config.ts b/sst.config.ts index 06cce7f3f..f9ffa579b 100644 --- a/sst.config.ts +++ b/sst.config.ts @@ -12,15 +12,14 @@ export default $config({ }, planetscale: "0.4.1", }, - }; + } }, async run() { - const { api } = await import("./infra/app.js"); - const { auth, gateway } = await import("./infra/cloud.js"); + const { api } = await import("./infra/app.js") + const { auth } = await import("./infra/cloud.js") return { api: api.url, - gateway: gateway.url, auth: auth.url, - }; + } }, -}); +}) |
