From 2b6f520f46b6a8cd8603cadc79e01c8b9455ad52 Mon Sep 17 00:00:00 2001 From: cameronapak Date: Wed, 16 Jul 2025 22:41:55 -0500 Subject: [PATCH] docs: fix typos and indentation in media module docs --- docs/modules/media.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/modules/media.mdx b/docs/modules/media.mdx index ba63e13..0e413da 100644 --- a/docs/modules/media.mdx +++ b/docs/modules/media.mdx @@ -27,12 +27,12 @@ Simply navigate to the **Media** tab of the bknd admin UI and enable the S3 medi Enter your AWS S3-compatible storage Access Key, Secret Access Key, and URL. This will automatically configure the S3 adapter for you. -2. Enable programatically. +2. Enable programmatically. To enable using a code-first approach, create an [Initial Structure](/usage/database#initial-structure) using the `initialConfig` option in your `bknd.config.ts` file. -```typscript bknd.config.ts +```typescript bknd.config.ts import type { BkndConfig } from "bknd/adapter"; export default { @@ -48,6 +48,6 @@ export default { } } } - } + } } satisfies BkndConfig; -``` +``` \ No newline at end of file