@nuxt/schema
Advanced tools
Comparing version 3.0.0-rc.7 to 3.0.0-rc.8
{ | ||
"name": "@nuxt/schema", | ||
"version": "3.0.0-rc.7", | ||
"version": "3.0.0-rc.8", | ||
"repository": "nuxt/framework", | ||
@@ -20,3 +20,3 @@ "license": "MIT", | ||
"unbuild": "latest", | ||
"vite": "~3.0.5" | ||
"vite": "~3.0.6" | ||
}, | ||
@@ -23,0 +23,0 @@ "dependencies": { |
@@ -52,3 +52,3 @@ { | ||
"/<rootDir>/node_modules", | ||
"/Users/pooya/Code/framework/packages/schema/node_modules" | ||
"/home/pooya/Code/framework/packages/schema/node_modules" | ||
] | ||
@@ -243,3 +243,3 @@ } | ||
"/<rootDir>/node_modules", | ||
"/Users/pooya/Code/framework/packages/schema/node_modules" | ||
"/home/pooya/Code/framework/packages/schema/node_modules" | ||
], | ||
@@ -677,5 +677,5 @@ "extensions": [ | ||
"versionBase": "", | ||
"version": "1660214825" | ||
"version": "1660311742" | ||
} | ||
} | ||
} |
@@ -49,3 +49,3 @@ | ||
> Options for the Vue compiler that will be passed at build time | ||
> Options for the Vue compiler that will be passed at build time. | ||
@@ -86,3 +86,3 @@ | ||
This can be set to a different value at runtime by setting the NUXT_APP_CDN_URL environment variable. | ||
This can be set to a different value at runtime by setting the `NUXT_APP_CDN_URL` environment variable. | ||
@@ -96,3 +96,3 @@ | ||
> The path to a templated HTML file for rendering Nuxt responses. Uses `<srcDir>/app.html` if it exists or the Nuxt default template if not. | ||
> The path to an HTML template file for rendering Nuxt responses. Uses `<srcDir>/app.html` if it exists, or the Nuxt's default template if not. | ||
@@ -104,6 +104,6 @@ | ||
> Enable or disable vuex store. | ||
> Enable or disable Vuex store. | ||
By default it is enabled if there is a `store/` directory | ||
By default, it is enabled if there is a `store/` directory. | ||
@@ -221,3 +221,3 @@ | ||
Normally there is no need to configure this directly. | ||
Normally, there is no need to configure this directly. | ||
@@ -232,3 +232,3 @@ | ||
Normally there is no need to configure this directly. | ||
Normally, there is no need to configure this directly. | ||
@@ -242,3 +242,3 @@ | ||
> CSS color of the progress bar | ||
> CSS color of the progress bar. | ||
@@ -250,3 +250,3 @@ | ||
> CSS color of the progress bar when an error appended while rendering the route (if data or fetch sent back an error for example). | ||
> CSS color of the progress bar when an error appended while rendering the route (if data or fetch sent back an error, for example). | ||
@@ -293,3 +293,3 @@ | ||
> Set to false to remove default progress bar styles (and add your own). | ||
> Set to `false` to remove default progress bar styles (and add your own). | ||
@@ -400,3 +400,3 @@ | ||
> Extend nested configurations from multiple local or remote sources | ||
> Extend nested configurations from multiple local or remote sources. | ||
@@ -426,3 +426,3 @@ | ||
If a relative path is specified it will be relative to the `rootDir`. | ||
If a relative path is specified, it will be relative to the `rootDir`. | ||
@@ -447,3 +447,3 @@ | ||
Normally you should not need to set this. | ||
Normally, you should not need to set this. | ||
@@ -455,3 +455,3 @@ | ||
> Whether your app is being unit tested | ||
> Whether your app is being unit tested. | ||
@@ -463,6 +463,6 @@ | ||
> Set to true to enable debug mode. | ||
> Set to `true` to enable debug mode. | ||
By default it's only enabled in development mode. | ||
By default, it's only enabled in development mode. | ||
@@ -522,3 +522,3 @@ | ||
> Modules are Nuxt extensions which can extend its core functionality and add endless integrations | ||
> Modules are Nuxt extensions which can extend its core functionality and add endless integrations. | ||
@@ -537,3 +537,3 @@ | ||
Modules are Nuxt extensions which can extend its core functionality and add endless integrations | ||
Modules are Nuxt extensions which can extend its core functionality and add endless integrations. | ||
Each module is either a string (which can refer to a package, or be a path to a file), a tuple with the module as first string and the options as a second object, or an inline module function. | ||
@@ -547,3 +547,3 @@ Nuxt tries to resolve each item in the modules array using node require path (in `node_modules`) and then will be resolved from project `srcDir` if `~` alias is used. | ||
> Built-in ad-hoc modules | ||
> Built-in ad-hoc modules. | ||
@@ -558,3 +558,3 @@ | ||
> Installed module metadata | ||
> Installed module metadata. | ||
@@ -633,3 +633,3 @@ | ||
By adding entries to `serverMiddleware` you can register additional routes without the need for an external server. | ||
You can pass a string, which can be the name of a node dependency or a path to a file. You can also pass an object with `path` and `handler` keys. (`handler` can be a path or a function.) | ||
You can pass a string, which can be the name of a node dependency or a path to a file. You can also pass an object with `path` and `handler` keys (`handler` can be a path or a function). | ||
@@ -639,3 +639,3 @@ | ||
- **Type**: `array` | ||
- **Default**: `["/<rootDir>/node_modules","/Users/pooya/Code/framework/packages/schema/node_modules"]` | ||
- **Default**: `["/<rootDir>/node_modules","/home/pooya/Code/framework/packages/schema/node_modules"]` | ||
@@ -655,3 +655,3 @@ > Used to set the modules directories for path resolving (for example, webpack's `resolveLoading`, `nodeExternals` and `postcss`). | ||
> The assets directory (aliased as `~assets` in your build) | ||
> The assets directory (aliased as `~assets` in your build). | ||
@@ -913,3 +913,3 @@ | ||
> You can extend generated `.nuxt/tsconfig.json` using this option | ||
> You can extend generated `.nuxt/tsconfig.json` using this option. | ||
@@ -1021,3 +1021,3 @@ | ||
- **Type**: `array` | ||
- **Default**: `["/<rootDir>/.nuxt","/<rootDir>","/<rootDir>","/<rootDir>/node_modules","/Users/pooya/Code/framework/packages/schema/node_modules"]` | ||
- **Default**: `["/<rootDir>/.nuxt","/<rootDir>","/<rootDir>","/<rootDir>/node_modules","/home/pooya/Code/framework/packages/schema/node_modules"]` | ||
@@ -1061,3 +1061,3 @@ | ||
> Enables CSS source map support (defaults to true in development) | ||
> Enables CSS source map support (defaults to `true` in development). | ||
@@ -1327,3 +1327,3 @@ | ||
> Set minimize to false to disable all minimizers. (It is disabled in development by default) | ||
> Set minimize to `false` to disable all minimizers. (It is disabled in development by default). | ||
@@ -1404,3 +1404,3 @@ | ||
> Set to `false` to disable the overlay provided by [FriendlyErrorsWebpackPlugin](https://github.com/nuxt/friendly-errors-webpack-plugin) | ||
> Set to `false` to disable the overlay provided by [FriendlyErrorsWebpackPlugin](https://github.com/nuxt/friendly-errors-webpack-plugin). | ||
@@ -1419,3 +1419,3 @@ | ||
> Configuration for Nitro | ||
> Configuration for Nitro. | ||
@@ -1427,3 +1427,3 @@ | ||
> Nitro server handlers | ||
> Nitro server handlers. | ||
@@ -1435,3 +1435,3 @@ | ||
> Nitro devevelopment-only server handlers | ||
> Nitro development-only server handlers. | ||
@@ -1452,3 +1452,3 @@ | ||
> Use vite-node for on-demand server chunk loading | ||
> Use `vite-node` for on-demand server chunk loading. | ||
@@ -1460,3 +1460,3 @@ | ||
> Enable Vue's reactivity transform | ||
> Enable Vue's reactivity transform. | ||
@@ -1468,3 +1468,3 @@ | ||
> Externalize `vue`, `@vue/*` and `vue-router` when build | ||
> Externalize `vue`, `@vue/*` and `vue-router` when building. | ||
@@ -1476,3 +1476,3 @@ | ||
> Tree shakes contents of client-only components from server bundle | ||
> Tree shakes contents of client-only components from server bundle. | ||
@@ -1484,3 +1484,3 @@ | ||
> Split server bundle into multiple chunks and dynamically import them | ||
> Split server bundle into multiple chunks and dynamically import them. | ||
@@ -1569,3 +1569,3 @@ | ||
> Enable caching for [`terser-webpack-plugin`](https://github.com/webpack-contrib/terser-webpack-plugin#options) and [`cache-loader`](https://github.com/webpack-contrib/cache-loader#cache-loader) | ||
> Enable caching for [`terser-webpack-plugin`](https://github.com/webpack-contrib/terser-webpack-plugin#options) and [`cache-loader`](https://github.com/webpack-contrib/cache-loader#cache-loader). | ||
@@ -1577,3 +1577,3 @@ | ||
> Inline server bundle dependencies | ||
> Inline server bundle dependencies. | ||
@@ -2072,3 +2072,3 @@ | ||
> Set to `false` to disable the overlay provided by [FriendlyErrorsWebpackPlugin](https://github.com/nuxt/friendly-errors-webpack-plugin) | ||
> Set to `false` to disable the overlay provided by [FriendlyErrorsWebpackPlugin](https://github.com/nuxt/friendly-errors-webpack-plugin). | ||
@@ -2205,3 +2205,3 @@ | ||
This option is automatically set based on global ssr value if not provided. This can be useful to dynamically enable/disable SSR on runtime after image builds (with docker for example). | ||
This option is automatically set based on global SSR value if not provided. This can be useful to dynamically enable/disable SSR at runtime after image builds (with docker, for example). | ||
@@ -2213,6 +2213,6 @@ | ||
> Forward server-side logs to the browser for better debugging (only available in development) | ||
> Forward server-side logs to the browser for better debugging (only available in development). | ||
Set to `collapsed` to collapse the logs, or false to disable. | ||
Set to `collapsed` to collapse the logs, or `false` to disable. | ||
@@ -2226,3 +2226,3 @@ | ||
> Set to true to enable HTTP2 push headers | ||
> Set to true to enable HTTP2 push headers. | ||
@@ -2283,3 +2283,3 @@ | ||
**Prerequisites**: These CSP settings are only effective when using Nuxt with `mode: 'server'` to serve your SSR application. | ||
**Updating settings**: These settings are read by the Nuxt server directly from `nuxt.config.js`. This means changes to these settings take effect when the server is restarted. There is no need to rebuild the application to update CSP settings. | ||
**Updating settings**: These settings are read by the Nuxt server directly from `nuxt.config`. This means changes to these settings take effect when the server is restarted. There is no need to rebuild the application to update CSP settings. | ||
@@ -2305,3 +2305,3 @@ | ||
> For routes matching the publicPath (`/_nuxt/*`) Disable by setting to false. | ||
> For routes matching the publicPath (`/_nuxt/*`). Disable by setting to `false`. | ||
@@ -2334,3 +2334,3 @@ | ||
> Additional options passed to vue-router | ||
> Additional options passed to `vue-router`. | ||
@@ -2349,3 +2349,3 @@ | ||
For server-side rendering it is not recommended to change it./ | ||
For server-side rendering it is not recommended to change it. | ||
@@ -2357,3 +2357,3 @@ | ||
> The base URL of the app. For example, if the entire single page application is served under /app/, then base should use the value '/app/'. | ||
> The base URL of the app. For example, if the entire single page application is served under `/app/`, then base should use the value `'/app/'`. | ||
@@ -2409,3 +2409,3 @@ | ||
> Globally configure `<nuxt-link>` default prefetch class (feature disabled by default) | ||
> Globally configure `<nuxt-link>` default prefetch class (feature disabled by default). | ||
@@ -2424,3 +2424,3 @@ | ||
> The `scrollBehavior` option lets you define a custom behavior for the scroll position between the routes. This method is called every time a page is rendered. To learn more about it. | ||
> The `scrollBehavior` option lets you define a custom behavior for the scroll position between the routes. This method is called every time a page is rendered. To learn more about it, see the `vue-router` documentation. | ||
@@ -2446,6 +2446,6 @@ | ||
> Controls whether the router should fall back to hash mode when the browser does not support history.pushState but mode is set to history. | ||
> Controls whether the router should fall back to hash mode when the browser does not support history.pushState, but mode is set to history. | ||
Setting this to false essentially makes every router-link navigation a full page refresh in IE9. This is useful when the app is server-rendered and needs to work in IE9, because a hash mode URL does not work with SSR. | ||
Setting this to `false` essentially makes every router-link navigation a full page refresh in IE9. This is useful when the app is server-rendered and needs to work in IE9, because a hash mode URL does not work with SSR. | ||
@@ -2464,3 +2464,3 @@ | ||
> When using nuxt generate with target: 'static', Nuxt will generate a payload.js for each page. | ||
> When using `nuxt generate` with target: 'static', Nuxt will generate a payload.js for each page. | ||
@@ -2475,3 +2475,3 @@ | ||
> If this option is set to true, trailing slashes will be appended to every route. If set to false, they'll be removed. | ||
> If this option is set to `true`, trailing slashes will be appended to every route. If set to `false`, they'll be removed. | ||
@@ -2589,3 +2589,3 @@ | ||
Set this as the error page in your static server configuration, so that unknown routes can be rendered (on the client-side) by Nuxt. | ||
* If unset or set to a falsy value, the name of the fallback HTML file will be `200.html`. * If set to true, the filename will be `404.html`. * If you provide a string as a value, it will be used instead. | ||
* If unset or set to a falsy value, the name of the fallback HTML file will be `200.html`. * If set to `true`, the filename will be `404.html`. * If you provide a string as a value, it will be used instead. | ||
@@ -2655,4 +2655,4 @@ | ||
- **Type**: `string` | ||
- **Default**: `"1660214825"` | ||
- **Default**: `"1660311742"` | ||
> A unique string to uniquely identify payload versions (defaults to the current timestamp). |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
508512