Skip to content

Commit

Permalink
docs(docs): update react-native installation guide
Browse files Browse the repository at this point in the history
  • Loading branch information
oktaysenkan committed Oct 7, 2024
1 parent 64d9af6 commit b914ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/docs/pages/installation/react-native.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Setting up Monicon with React Native is a straightforward process. This guide wi
To get started, you’ll need to install the necessary dependencies for Monicon. In your project directory, run the following command to install the dependencies.

```sh npm2yarn
npm i @monicon/native @monicon/metro @monicon/babel
npm i @monicon/native @monicon/metro @monicon/babel-plugin

# if you want react-native-web support
npm i @monicon/webpack
Expand Down
10 changes: 1 addition & 9 deletions apps/docs/pages/installation/remix.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,11 @@ Now that the dependencies are installed, you’ll need to configure Vite to use
```ts filename="vite.config.ts"
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
import monicon from "@monicon/vite";

export default defineConfig({
plugins: [
remix({
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
v3_throwAbortReason: true,
},
}),
tsconfigPaths(),
remix(),
monicon({
icons: [
"mdi:home",
Expand Down

0 comments on commit b914ba6

Please sign in to comment.