From 57995a2371773419e7ac20b6980c96394351738d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20de=20Dios=20Mart=C3=ADnez=20Vallejo?= Date: Tue, 18 Nov 2025 00:00:20 +0100 Subject: [PATCH] cleanup --- content/configuration/vite.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/configuration/vite.md b/content/configuration/vite.md index 433ad5cc..09a7e975 100644 --- a/content/configuration/vite.md +++ b/content/configuration/vite.md @@ -12,7 +12,7 @@ All NativeScript apps can be bundled using [Vite](https://vite.dev/). To manage Install the plugin. ```bash -npm install @nativescript/vite +npm install -d @nativescript/vite ``` ## Quick start (`init`) @@ -154,7 +154,7 @@ Additional env flags that are usually passed by the CLI automatically We define a few useful globally available variables that you can use to alter logic in your applications. -- `__DEV__` - `true` when webpack is building in development mode +- `__DEV__` - `true` when vite is building in development mode ```ts if (__DEV__) { // we are running a dev build