Summary: When using baseUrl in site config, it adds a prefix to all link paths. But for assets, it doesn't work if you refer to them as `docs/assets/...`, you have to use just `assets/...`. Source: https://github.com/facebook/Docusaurus/issues/861 Reviewed By: passy Differential Revision: D20796933 fbshipit-source-id: 2346e42b8b548f576a1e143f56ee5236eab55073
19 lines
695 B
Markdown
19 lines
695 B
Markdown
---
|
|
id: intro
|
|
title: Intro
|
|
---
|
|
|
|

|
|
|
|
In this tutorial, we show you how how easy it is to build a Flipper plugin
|
|
for Android and iOS that extracts data from your native application and
|
|
displays it in the desktop app.
|
|
|
|
We then guide you through the process of converting a basic table plugin into
|
|
a full plugin with custom UI components.
|
|
|
|
Before we get started, let's define two terms we will use frequently throughout
|
|
this tutorial:
|
|
|
|
- **Desktop app**: This is the Electron-based application you run on your desktop.
|
|
- **Mobile client**: This is the mobile app running most likely on a phone or other mobile device. It connects to the desktop app. |