diff options
Diffstat (limited to 'sst.config.ts')
| -rw-r--r-- | sst.config.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sst.config.ts b/sst.config.ts index 44f984b93..06cce7f3f 100644 --- a/sst.config.ts +++ b/sst.config.ts @@ -1,5 +1,4 @@ /// <reference path="./.sst/platform/config.d.ts" /> - export default $config({ app(input) { return { @@ -11,16 +10,17 @@ export default $config({ stripe: { apiKey: process.env.STRIPE_SECRET_KEY, }, + 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, gateway } = await import("./infra/cloud.js"); return { api: api.url, gateway: gateway.url, auth: auth.url, - } + }; }, -}) +}); |
