Skip to content

Commit e26b934

Browse files
committed
chore: update website
Made-with: Cursor
1 parent 3f16830 commit e26b934

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

website/src/docs/official-plugins/sqlite.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ function App() {
5151
}
5252
```
5353

54+
## Web (React Native for Web)
55+
56+
With [Rozenite for Web](/docs/rozenite-for-web), the SQLite plugin runs in **development** in the browser the same way as on native, whenever your app’s SQLite layer works on web.
57+
58+
Configure **`expo-sqlite` for web** in your project (Metro WASM support and the HTTP headers Expo documents for `SharedArrayBuffer`). Web support in Expo is labeled **alpha**; see the [Expo SQLite documentation](https://docs.expo.dev/versions/latest/sdk/sqlite/) for current setup steps and limitations.
59+
5460
## What the panel provides
5561

5662
- Browse registered databases, tables, and views.

website/src/docs/official-plugins/storage.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ function App() {
4848
}
4949
```
5050

51+
## Web (React Native for Web)
52+
53+
With [Rozenite for Web](/docs/rozenite-for-web), the Storage plugin is available in **development** when you debug a React Native web app in a supported browser.
54+
55+
- **AsyncStorage** and **Expo SecureStore** adapters behave like on native, as long as those libraries work in your web build.
56+
- **MMKV** is not used in the browser. The MMKV adapter still appears in your configuration, but on web it resolves to an **empty inspector** (no storages), so you do not need a separate branch of code to avoid loading `react-native-mmkv` on web.
57+
5158
## Adapter: MMKV
5259

5360
```ts title="App.tsx"

0 commit comments

Comments
 (0)