-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Translate guides configuration glossary pages to Spanish (es-ES) (#648)
* 📝 Translate configuration-rootdir.md * 📝 Translate configuration-runtime-config.md * 📝 Translate configuration-srcdir.md
- Loading branch information
Krystle Salazar
authored
Sep 4, 2020
1 parent
e755ad9
commit 2dbdd55
Showing
5 changed files
with
126 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
content/es/guides/configuration-glossary/configuration-rootdir.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: 'La propiedad rootDir' | ||
description: Define el espacio de trabajo de la aplicación Nuxt.js | ||
menu: rootDir | ||
category: configuration-glossary | ||
position: 23 | ||
--- | ||
|
||
- Tipo: `String` | ||
- Por defecto: `process.cwd()` | ||
|
||
> Define el directorio del espacio de trabajo de tu aplicación Nuxt.js. | ||
Esta propiedad será sobrescrita por los comandos de nuxt (nuxt start, nuxt build etc) si se les pasa un argumento. Por ejemplo, ejecutar `nuxt ./my-app/` establecerá el `rootDir` a la ruta absoluta de `./my-app/` desde el directorio de trabajo actual. | ||
|
||
Por eso, normalmente no es necesario configurar esta opción a menos que utilice [Nuxt.js mediante programación](/guides/internals-glossary/nuxt). | ||
|
||
<base-alert type="info"> Tanto `rootDir` como la raíz del paquete que contiene el directorio `node_modules` deben estar dentro del mismo árbol de directorios para poder <NuxtLink to="https://nodejs.org/api/modules.html#modules_all_together">resolver las dependencias</NuxtLink>. Consulta la <NuxtLink to="/guides/configuration-glossary/configuration-srcdir">opción `srcDir`</NuxtLink> para ejemplos de estructura de directorios cuando ese no es el caso. | ||
</base-alert> |
21 changes: 21 additions & 0 deletions
21
content/es/guides/configuration-glossary/configuration-runtime-config.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: 'Propiedades RuntimeConfig' | ||
description: RuntimeConfig permite pasar variables dinámicas de configuración y de entorno al contexto nuxt | ||
menu: runtimeConfig | ||
category: configuration-glossary | ||
position: 25 | ||
--- | ||
|
||
La configuración en tiempo de ejecución permite pasar variables dinámicas de configuración y de entorno al contexto de nuxt. Para más información de uso, consulta [runtime config guide](/guide/runtime-config). | ||
|
||
## `publicRuntimeConfig` | ||
|
||
- Tipo: `Object` | ||
|
||
El valor de este objeto es **accesible tanto desde el cliente como desde el servidor** usando `$config`. | ||
|
||
## `privateRuntimeConfig` | ||
|
||
- Tipo: `Object` | ||
|
||
El valor de este objeto es accesible **solo desde el servidor** usando `$config`. Anula `publicRuntimeConfig` para el servidor. |
82 changes: 82 additions & 0 deletions
82
content/es/guides/configuration-glossary/configuration-srcdir.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
title: 'La propiedad srcDir' | ||
description: Defina el directorio de origen de tu aplicación Nuxt.js | ||
menu: srcDir | ||
category: configuration-glossary | ||
position: 28 | ||
--- | ||
|
||
- Tipo: `String` | ||
- Por defecto: [rootDir value](/guides/configuration-glossary/configuration-rootdir) | ||
|
||
> Define el directorio de origen de tu aplicación Nuxt.js | ||
Si se especifica una ruta relativa, será relativa al `rootDir`. | ||
|
||
Ejemplo 1: Prerrequisitos: | ||
|
||
```js{}[nuxt.config.js] | ||
export default { | ||
srcDir: 'client/' | ||
} | ||
``` | ||
|
||
```js{}[package.json] | ||
"script": { | ||
"dev": "yarn nuxt" | ||
} | ||
``` | ||
|
||
funciona con la siguiente estructura de carpetas (ten en cuenta que nuxt.config aparece en el directorio de la aplicación) | ||
|
||
```bash | ||
-| app/ | ||
---| node_modules/ | ||
---| nuxt.config.js | ||
---| package.json | ||
---| client/ | ||
------| assets/ | ||
------| components/ | ||
------| layouts/ | ||
------| middleware/ | ||
------| pages/ | ||
------| plugins/ | ||
------| static/ | ||
------| store/ | ||
``` | ||
|
||
Ejemplo 2: | ||
|
||
En lugar del ejemplo 1, también puedes mover nuxt.config a tu carpeta `src`. En este caso solo necesitas especificar el cliente como el `rootDir` y puedes dejar el `srcDir` vacío: | ||
|
||
Prerrequisitos: | ||
|
||
```js{}[nuxt.config.js] | ||
export default { | ||
srcDir: '' // o simplemente quítalo | ||
} | ||
``` | ||
|
||
```js{}[package.json] | ||
"script": { | ||
"dev": "yarn nuxt client" // Esto establece al cliente como rootDir | ||
} | ||
``` | ||
|
||
funciona con la siguiente estructura de carpetas (ten en cuenta que nuxt.config aparece en el directorio del cliente) | ||
|
||
```bash | ||
-| app/ | ||
---| node_modules/ | ||
---| package.json | ||
---| client/ | ||
------| nuxt.config.js | ||
------| assets/ | ||
------| components/ | ||
------| layouts/ | ||
------| middleware/ | ||
------| pages/ | ||
------| plugins/ | ||
------| static/ | ||
------| store/ | ||
``` |