You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2024. It is now read-only.
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.
3
+
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.
4
4
---
5
5
6
-
> Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the nuxt.config.js file.
6
+
> Nuxt.js is configured by default to cover most use cases. This default configuration can be overwritten by using the `nuxt.config.js` file.
7
7
8
8
### build
9
9
10
-
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.
10
+
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.
11
11
12
-
[Documentation about build integration](/api/configuration-build)
12
+
[Documentation about `build` integration](/api/configuration-build)
13
13
14
14
### cache
15
15
16
16
This option lets you enable cached components for better render performances.
17
17
18
-
[Documentation about cache integration](/api/configuration-cache)
18
+
[Documentation about `cache` integration](/api/configuration-cache)
19
19
20
20
### css
21
21
22
22
This option lets you define the CSS files/modules/libraries you want to set as globals (included in every page).
23
23
24
-
[Documentation about css integration](/api/configuration-css)
24
+
[Documentation about `css` integration](/api/configuration-css)
25
25
26
26
### dev
27
27
28
-
This option lets you define the development or production mode of nuxt.js
28
+
This option lets you define the `development` or `production` mode of Nuxt.js
29
29
30
-
[Documentation about dev integration](/api/configuration-dev)
30
+
[Documentation about `dev` integration](/api/configuration-dev)
31
31
32
32
### env
33
33
34
34
This option lets you define environment variables available both the client and the server.
35
35
36
-
[Documentation about env integration](/api/configuration-env)
36
+
[Documentation about `env` integration](/api/configuration-env)
37
37
38
38
### generate
39
39
@@ -51,40 +51,40 @@ This option lets you to define all default meta tags for your application.
51
51
52
52
This option lets you to customize the loading component which is loaded by default with Nuxt.js.
53
53
54
-
[Documentation about loading integration](/api/configuration-loading)
54
+
[Documentation about `loading` integration](/api/configuration-loading)
55
55
56
56
### modules
57
57
58
-
This option lets you add nuxt modules to your project.
58
+
This option lets you add Nuxt modules to your project.
59
59
60
-
[Documentation about modules integration](/api/configuration-modules)
60
+
[Documentation about `modules` integration](/api/configuration-modules)
61
61
62
62
### plugins
63
63
64
-
This option lets you to define JavaScript plugins to be run before instantiating the root vue.js application.
64
+
This option lets you to define JavaScript plugins to be run before instantiating the root Vue.js Application.
65
65
66
-
[Documentation about plugins integration](/api/configuration-plugins)
66
+
[Documentation about `plugins` integration](/api/configuration-plugins)
67
67
68
68
### rootDir
69
69
70
-
This option lets you define the workspace of your nuxt.js application.
70
+
This option lets you define the workspace of your Nuxt.js Application.
71
71
72
-
[Documentation about rootDir integration](/api/configuration-rootdir)
72
+
[Documentation about `rootDir` integration](/api/configuration-rootdir)
73
73
74
74
### router
75
75
76
-
This option lets you to overwrite the default Nuxt.js configuration of vue-router.
76
+
This option lets you to overwrite the default Nuxt.js configuration of Vue Router.
77
77
78
-
[Documentation about router integration](/api/configuration-router)
78
+
[Documentation about `router` integration](/api/configuration-router)
79
79
80
80
### srcDir
81
81
82
-
This option lets you define the source directory of your nuxt.js application.
82
+
This option lets you define the source directory of your Nuxt.js Application.
83
83
84
-
[Documentation about srcDir integration](/api/configuration-srcdir)
84
+
[Documentation about `srcDir` integration](/api/configuration-srcdir)
85
85
86
86
### transition
87
87
88
88
This option lets you define the default properties of the page transitions.
89
89
90
-
[Documentation about transition integration](/api/configuration-transition)
90
+
[Documentation about `transition` integration](/api/configuration-transition)
0 commit comments