|
21 | 21 |
|
22 | 22 | ### What does Nuxtr do? |
23 | 23 |
|
| 24 | +- [Project Creation](#project-creation) |
24 | 25 | - [Directory and File Creation](#directory-and-file-creation) |
25 | 26 | - [Dependencies management](#dependencies-management) |
26 | 27 | - [IntelliSense and Auto Completion](#intellisense-and-auto-completion) |
|
36 | 37 | <br> |
37 | 38 | <br> |
38 | 39 |
|
| 40 | +### Project Creation |
| 41 | + |
| 42 | +Using `Nuxtr: Create Nuxt project` command, you can create a new Nuxt project with a few steps. You can choose a project starter from [Nuxt Startes](https://nuxt.new) or you can add your own project started: |
| 43 | + |
| 44 | +```JSON |
| 45 | +"nuxtr.projectTemplates": [ |
| 46 | + { |
| 47 | + "name": "Vitesse", |
| 48 | + "description": " Vitesse for Nuxt 3 🏔💚⚡️ ", |
| 49 | + "repoURL": "https://github.com/antfu/vitesse-nuxt3", |
| 50 | + "branch": "main", // Optional |
| 51 | + }, |
| 52 | +], |
| 53 | +``` |
| 54 | + |
| 55 | +<br> |
| 56 | + |
39 | 57 | ### Directory and File Creation |
40 | 58 |
|
41 | 59 | Effortlessly generate all essential directories and files for your Nuxt project right from within VSCode. Utilize the command palette or context menus to swiftly create Vue/TypeScript files, as well as special files like [`.nuxtignore`](https://nuxt.com/docs/guide/directory-structure/nuxtignore), [`.nuxtrc`](https://nuxt.com/docs/api/configuration/nuxt-config), and [`app.config.ts`](https://nuxt.com/docs/guide/directory-structure/app-config). |
@@ -87,7 +105,7 @@ Additionally, you can choose to automatically open the newly created file with: |
87 | 105 |
|
88 | 106 | ### IntelliSense and Auto Completion |
89 | 107 |
|
90 | | -Nuxtr VSCode offers robust IntelliSense capabilities tailored for Vue files. This includes dynamic path completion for [NuxtLinks](https://nuxt.com/docs/api/components/nuxt-link#internal-routing) within the pages directory, and seamless handling of media resources from the [public or static directories](https://nuxt.com/docs/guide/directory-structure/public), depending on your Nuxt version. Additionally, enjoy IntelliSense support for critical configuration files like [`.nuxtignore`](https://nuxt.com/docs/guide/directory-structure/nuxtignore) and [`.nuxtrc`](https://nuxt.com/docs/guide/directory-structure/nuxtrc), ensuring precise guidance and efficient coding. |
| 108 | +Nuxtr offers robust IntelliSense capabilities tailored for Vue files. This includes dynamic path completion for [NuxtLinks](https://nuxt.com/docs/api/components/nuxt-link#internal-routing) within the pages directory, and seamless handling of media resources from the [public or static directories](https://nuxt.com/docs/guide/directory-structure/public), depending on your Nuxt version. Additionally, enjoy IntelliSense support for critical configuration files like [`.nuxtignore`](https://nuxt.com/docs/guide/directory-structure/nuxtignore) and [`.nuxtrc`](https://nuxt.com/docs/guide/directory-structure/nuxtrc), ensuring precise guidance and efficient coding. |
91 | 109 |
|
92 | 110 | You can enable/disable IntelliSense from the settings: |
93 | 111 |
|
@@ -242,7 +260,7 @@ If you have any idea, feel free to [open a discussion](https://github.com/orgs/n |
242 | 260 |
|
243 | 261 | ### Acknowledgements |
244 | 262 |
|
245 | | -Nuxtr VSCode relies on the following projects/repositories: |
| 263 | +Nuxtr relies on the following projects/repositories: |
246 | 264 |
|
247 | 265 | - [Nuxt Modules](https://github.com/nuxt/modules) |
248 | 266 | - [Nuxt Assets](https://github.com/nuxt/assets) |
|
0 commit comments