remove "not required" line from webapp docs

This commit is contained in:
Alina Beck 2019-07-08 19:10:21 +02:00
parent b2e68bf9df
commit 1f9f7e205a
7 changed files with 5 additions and 24 deletions

View File

@ -1,8 +1,5 @@
# ASSETS # ASSETS
**This directory is not required, you can delete it if you don't want to use it.** This directory contains your un-compiled assets such as LESS, SASS, or JavaScript in our case SCSS styles.
This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked). More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).

View File

@ -1,8 +1,5 @@
# COMPONENTS # COMPONENTS
**This directory is not required, you can delete it if you don't want to use it.**
The components directory contains your Vue.js Components. The components directory contains your Vue.js Components.
_Nuxt.js doesn't supercharge these components._ _Nuxt.js doesn't supercharge these components._

View File

@ -1,8 +1,5 @@
# LAYOUTS # LAYOUTS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Application Layouts. This directory contains your Application Layouts.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts). More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).

View File

@ -1,8 +1,5 @@
# MIDDLEWARE # MIDDLEWARE
**This directory is not required, you can delete it if you don't want to use it.** This directory contains our application middleware. The middleware lets you define custom functions to be ran before rendering a page or a group of pages \(layouts\).
This directory contains your application middleware. The middleware lets you define custom function to be ran before rendering a page or a group of pages \(layouts\).
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware). More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware).

View File

@ -1,8 +1,5 @@
# PLUGINS # PLUGINS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Javascript plugins that you want to run before mounting the root Vue.js application. This directory contains your Javascript plugins that you want to run before mounting the root Vue.js application.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins). More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).

View File

@ -1,10 +1,9 @@
# STATIC # STATIC
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your static files. Each file inside this directory is mapped to `/`. This directory contains your static files. Each file inside this directory is mapped to `/`.
Example: `/static/robots.txt` is mapped as `/robots.txt`. Example: `/static/robots.txt` is mapped as `/robots.txt`.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static). We use it for images.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).

View File

@ -1,10 +1,7 @@
# STORE # STORE
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Vuex Store files. Vuex Store option is implemented in the Nuxt.js framework. This directory contains your Vuex Store files. Vuex Store option is implemented in the Nuxt.js framework.
Creating a file in this directory activate the option in the framework automatically. Creating a file in this directory activates the option in the framework automatically.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store). More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).