Status: {{ status.connected ? 'Connected' : 'Offline' }}
+Loading...
+
+
+Once diagnostics are enabled, you can open the inspector in two ways:
+
+- **Nuxt Devtools**: open Devtools in your browser and look for the PowerSync tab
+- **Direct URL**: navigate to `http://localhost:3000/__powersync-inspector`
+
+The inspector provides the following views:
+
+- **Sync Status** — real-time connection status, sync progress, upload queue statistics, and error monitoring
+- **Data Inspector** — browse and search your local SQLite tables
+- **Bucket Inspector** - browse your buckets and their data
+- **Config Inspector** — view your PowerSync configuration, connection options, and schema
+- **Logs** — real-time log output with syntax highlighting and search
+
+## Known Issues
+
+PowerSync Inspector uses `unocss` as a transitive dependency, which can conflict with Tailwind CSS. If you use Tailwind, add the following to your `nuxt.config.ts`:
+
+```typescript nuxt.config.ts
+export default defineNuxtConfig({
+ unocss: {
+ autoImport: false
+ }
+});
+```
diff --git a/client-sdks/reference/javascript-web.mdx b/client-sdks/reference/javascript-web.mdx
index 12d8ce6a..ef55320c 100644
--- a/client-sdks/reference/javascript-web.mdx
+++ b/client-sdks/reference/javascript-web.mdx
@@ -59,7 +59,10 @@ The PowerSync [JavaScript Web SDK](../javascript-web) is compatible with popular
Wrapper package to support reactivity and live queries.