From bea741d66b69f9e08688fffc9b85d7ef86672285 Mon Sep 17 00:00:00 2001 From: Bruno Lesieur Date: Fri, 15 Sep 2017 15:32:52 +0200 Subject: [PATCH] Review Vuejs-FR Signed-off-by: Bruno Lesieur --- en/guide/configuration.md | 42 +++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/en/guide/configuration.md b/en/guide/configuration.md index b0b81c96e..f36e6cdfc 100644 --- a/en/guide/configuration.md +++ b/en/guide/configuration.md @@ -1,39 +1,39 @@ --- title: Configuration -description: Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the nuxt.config.js file. +description: Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the `nuxt.config.js` file. --- -> Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the nuxt.config.js file. +> Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the `nuxt.config.js` file. ### build -This option lets you add modules inside the vendor.bundle.js file to reduce the size of the application bundle. This is especially helpful when using external modules. +This option lets you add modules inside the `vendor.bundle.js` file to reduce the size of the application bundle. This is especially helpful when using external modules. -[Documentation about build integration](/api/configuration-build) +[Documentation about `build` integration](/api/configuration-build) ### cache This option lets you enable cached components for better render performances. -[Documentation about cache integration](/api/configuration-cache) +[Documentation about `cache` integration](/api/configuration-cache) ### css This option lets you define the CSS files/modules/libraries you want to set as globals (included in every page). -[Documentation about css integration](/api/configuration-css) +[Documentation about `css` integration](/api/configuration-css) ### dev -This option lets you define the development or production mode of nuxt.js +This option lets you define the `development` or `production` mode of Nuxt.js -[Documentation about dev integration](/api/configuration-dev) +[Documentation about `dev` integration](/api/configuration-dev) ### env This option lets you define environment variables available both the client and the server. -[Documentation about env integration](/api/configuration-env) +[Documentation about `env` integration](/api/configuration-env) ### generate @@ -51,40 +51,40 @@ This option lets you to define all default meta tags for your application. This option lets you to customize the loading component which is loaded by default with Nuxt.js. -[Documentation about loading integration](/api/configuration-loading) +[Documentation about `loading` integration](/api/configuration-loading) ### modules -This option lets you add nuxt modules to your project. +This option lets you add Nuxt modules to your project. -[Documentation about modules integration](/api/configuration-modules) +[Documentation about `modules` integration](/api/configuration-modules) ### plugins -This option lets you to define JavaScript plugins to be run before instantiating the root vue.js application. +This option lets you to define JavaScript plugins to be run before instantiating the root Vue.js Application. -[Documentation about plugins integration](/api/configuration-plugins) +[Documentation about `plugins` integration](/api/configuration-plugins) ### rootDir -This option lets you define the workspace of your nuxt.js application. +This option lets you define the workspace of your Nuxt.js Application. -[Documentation about rootDir integration](/api/configuration-rootdir) +[Documentation about `rootDir` integration](/api/configuration-rootdir) ### router -This option lets you to overwrite the default Nuxt.js configuration of vue-router. +This option lets you to overwrite the default Nuxt.js configuration of Vue Router. -[Documentation about router integration](/api/configuration-router) +[Documentation about `router` integration](/api/configuration-router) ### srcDir -This option lets you define the source directory of your nuxt.js application. +This option lets you define the source directory of your Nuxt.js Application. -[Documentation about srcDir integration](/api/configuration-srcdir) +[Documentation about `srcDir` integration](/api/configuration-srcdir) ### transition This option lets you define the default properties of the page transitions. -[Documentation about transition integration](/api/configuration-transition) +[Documentation about `transition` integration](/api/configuration-transition)