Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: minor improvements for the quick start section #5036

Merged
merged 4 commits into from
May 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/content/1.getting-started/1.quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Before getting started, please make sure you have installed the recommended setu
* Either enable [**Take Over Mode**](https://github.com/johnsoncodehk/volar/discussions/471) (recommended)
* ... or add **TypeScript Vue Plugin (Volar)** πŸ‘‰ [[Download](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.vscode-typescript-vue-plugin)]

<sup>*</sup> If you already have Node.js installed, check with `node --version` that you are using `v14` or `v16`.
<sup>*</sup> If you already have Node.js installed, check with `node --version` that you are using version 14.16 or above 16.11.

::alert{type=info}

If you have enabled **Take Over Mode** or installed the **TypeScript Vue Plugin (Volar)** you can disable generating the shim for `*.vue` files:
If you have enabled **Take Over Mode** or installed the **TypeScript Vue Plugin (Volar)**, you can disable generating the shim for `*.vue` files:

```js
export default defineNuxtConfig({
Expand Down Expand Up @@ -51,7 +51,7 @@ pnpm dlx nuxi init nuxt-app

::

Open `nuxt-app` folder in visual studio code:
Open `nuxt-app` folder in Visual Studio Code:

```bash
code nuxt-app
Expand All @@ -77,7 +77,7 @@ pnpm install --shamefully-hoist

## Development server

Now you'll be able to use `yarn dev` to start your nuxt app in development mode:
Now you'll be able to start your Nuxt app in development mode:

::code-group

Expand All @@ -96,7 +96,7 @@ pnpm run dev -- -o
::

::alert{type=success icon=✨ .font-bold}
Well done! A browser window should automatically open for <http://localhost:3000>
Well done! A browser window should automatically open for <http://localhost:3000>.
::

## Next steps
Expand Down