summaryrefslogtreecommitdiffhomepage
path: root/sst.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sst.config.ts')
-rw-r--r--sst.config.ts9
1 files changed, 3 insertions, 6 deletions
diff --git a/sst.config.ts b/sst.config.ts
index f9ffa579b..2bc55d76e 100644
--- a/sst.config.ts
+++ b/sst.config.ts
@@ -15,11 +15,8 @@ export default $config({
}
},
async run() {
- const { api } = await import("./infra/app.js")
- const { auth } = await import("./infra/cloud.js")
- return {
- api: api.url,
- auth: auth.url,
- }
+ await import("./infra/app.js")
+ await import("./infra/cloud.js")
+ await import("./infra/desktop.js")
},
})