From 92706b745257745748d77e2e0a22a1578c05331c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20St=C3=BCckler?= Date: Fri, 13 Dec 2024 21:50:35 +0100 Subject: [PATCH] Update get-started.md (#2428) docs: remove save flag from npm install commands Co-authored-by: Chris Gervang --- docs/get-started/get-started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/get-started/get-started.md b/docs/get-started/get-started.md index ce2a06f58..241421e3c 100644 --- a/docs/get-started/get-started.md +++ b/docs/get-started/get-started.md @@ -13,14 +13,14 @@ import TabItem from '@theme/TabItem'; ```bash -npm install --save react-map-gl mapbox-gl @types/mapbox-gl +npm install react-map-gl mapbox-gl @types/mapbox-gl ``` ```bash -npm install --save react-map-gl maplibre-gl +npm install react-map-gl maplibre-gl ``` @@ -129,7 +129,7 @@ import 'maplibre-gl/dist/maplibre-gl.css'; ## Using with a Compatible Fork ```bash -npm install --save react-map-gl my-map-gl-fork +npm install react-map-gl my-map-gl-fork ``` Then override the `mapLib` prop of `Map`: @@ -144,4 +144,4 @@ import 'my-map-gl-fork/path/to/style-sheet.css'; function App() { return ; } -``` \ No newline at end of file +```