Nuxt/docs/3.api/4.advanced/2.kit.md

1206 lines
26 KiB
Markdown
Raw Normal View History

---
title: "Kit Utilities"
description: Nuxt Kit provides composable utilities to help interacting with Nuxt Hooks and Nuxt Builder.
---
# Kit Utilities
2022-11-16 17:21:08 +00:00
::ReadMore{link="/docs/guide/going-further/kit"}
::
2023-07-28 14:36:01 +00:00
## Modules
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/module)
2023-07-28 14:46:02 +00:00
### `installModule`
2023-07-28 14:51:17 +00:00
Install specified Nuxt module programmatically. This is helpful when your module depends on other modules. You can pass the module options as an object to `inlineOptions` and they will be passed to the module's `setup` function.
2023-07-28 14:46:02 +00:00
#### Type
```ts
async function installModule (moduleToInstall: string | NuxtModule, inlineOptions?: any, nuxt?: Nuxt)
```
#### Parameters
##### `moduleToInstall`
**Type**: `string` | `NuxtModule`
**Required**: `true`
The module to install. Can be either a string with the module name or a module object itself.
##### `inlineOptions`
**Type**: `any`
**Default**: `{}`
An object with the module options to be passed to the module's `setup` function.
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
2023-07-28 14:46:02 +00:00
#### Examples
2023-07-28 14:50:59 +00:00
```ts
import { defineNuxtModule, installModule } from '@nuxt/kit'
export default defineNuxtModule<ModuleOptions>({
async setup (options, nuxt) {
// will install @nuxtjs/fontaine with Roboto font and Impact fallback
await installModule('@nuxtjs/fontaine', {
// module configuration
fonts: [
{
family: 'Roboto',
fallbacks: ['Impact'],
fallbackName: 'fallback-a',
}
]
})
}
})
```
2023-07-28 14:36:01 +00:00
## Programmatic Usage
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/loader)
Programmatic usage can be helpfull when you want to use Nuxt programmatically, for example, when building a [CLI tool](https://github.com/nuxt/cli) or [test utils](https://github.com/nuxt/nuxt/tree/main/packages/test-utils).
2023-07-29 12:29:15 +00:00
### `loadNuxt`
Load Nuxt programmatically. It will load the Nuxt configuration, instantiate and return the promise with Nuxt instance.
2023-07-29 12:29:15 +00:00
#### Type
```ts
async function loadNuxt (loadOptions?: LoadNuxtOptions): Promise<Nuxt>
interface LoadNuxtOptions extends LoadNuxtConfigOptions {
dev?: boolean
ready?: boolean
rootDir?: string
config?: LoadNuxtConfigOptions['overrides']
}
```
#### Parameters
##### `loadOptions`
**Type**: `LoadNuxtOptions`
**Default**: `{}`
Loading conditions for Nuxt. `loadNuxt` uses [`c12`](https://github.com/unjs/c12) under the hood, so it accepts the same options as `c12.loadConfig` with some additional options:
2023-07-29 12:29:15 +00:00
- `dev` (optional)
**Type**: `boolean`
**Default**: `false`
If set to `true`, Nuxt will be loaded in development mode.
- `ready` (optional)
**Type**: `boolean`
**Default**: `true`
If set to `true`, Nuxt will be ready to use after the `loadNuxt` call. If set to `false`, you will need to call `nuxt.ready()` to make sure Nuxt is ready to use.
- `rootDir` (optional)
**Type**: `string`
**Default**: `null`
**Deprecated**: Use `cwd` option instead.
The root directory of the Nuxt project.
- `config` (optional)
**Type**: `LoadNuxtConfigOptions['overrides']`
**Default**: `{}`
**Deprecated**: Use `overrides` option instead.
Overrides for the Nuxt configuration.
### `buildNuxt`
2023-07-29 14:24:40 +00:00
Build Nuxt programmatically. It will invoke the builder (currently [@nuxt/vite-builder](https://github.com/nuxt/nuxt/tree/main/packages/vite) or [@nuxt/webpack-builder](https://github.com/nuxt/nuxt/tree/main/packages/webpack)) to bundle the application.
#### Type
```ts
async function buildNuxt (nuxt: Nuxt): Promise<any>
```
#### Parameters
##### `nuxt`
**Type**: `Nuxt`
**Required**: `true`
Nuxt instance to build. It can be retrieved from the context via `useNuxt()` call.
2023-07-29 12:29:15 +00:00
### `loadNuxtConfig`
Load Nuxt configuration. It will return the promise with the configuration object.
#### Type
```ts
async function loadNuxtConfig (opts: LoadNuxtConfigOptions): Promise<NuxtOptions>
```
#### Parameters
##### `opts`
**Type**: `LoadNuxtConfigOptions`
**Required**: `true`
Options to pass in [`c12`](https://github.com/unjs/c12#options) `loadConfig` call.
2023-07-28 14:36:01 +00:00
## Compatibility
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/compatibility.ts)
2023-08-01 12:27:51 +00:00
### `checkNuxtCompatibility`
Checks if constraints are met for the current Nuxt version. If not, returns an array of messages. Nuxt 2 version also checks for `bridge` support.
#### Type
```ts
async function checkNuxtCompatibility(
constraints: NuxtCompatibility,
nuxt?: Nuxt
): Promise<NuxtCompatibilityIssues>;
interface NuxtCompatibility {
nuxt?: string;
bridge?: boolean;
}
interface NuxtCompatibilityIssue {
name: string;
message: string;
}
interface NuxtCompatibilityIssues extends Array<NuxtCompatibilityIssue> {
toString(): string;
}
```
#### Parameters
##### `constraints`
**Type**: `NuxtCompatibility`
**Default**: `{}`
Constraints to check for. It accepts the following properties:
- `nuxt` (optional)
2023-08-01 12:35:59 +00:00
**Type**: `string`
2023-08-01 12:27:51 +00:00
Nuxt version in semver format. Versions may be defined in Node.js way, for exmaple: `>=2.15.0 <3.0.0`.
- `bridge` (optional)
**Type**: `boolean`
If set to `true`, it will check if the current Nuxt version supports `bridge`.
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
### `assertNuxtCompatibility`
Asserts that constraints are met for the current Nuxt version. If not, throws an error with the list of issues as string.
#### Type
```ts
async function assertNuxtCompatibility(
constraints: NuxtCompatibility,
nuxt?: Nuxt
): Promise<true>;
interface NuxtCompatibility {
nuxt?: string;
bridge?: boolean;
}
```
#### Parameters
##### `constraints`
**Type**: `NuxtCompatibility`
**Default**: `{}`
Constraints to check for. It accepts the following properties:
- `nuxt` (optional)
2023-08-01 12:35:59 +00:00
**Type**: `string`
2023-08-01 12:27:51 +00:00
Nuxt version in semver format. Versions may be defined in Node.js way, for exmaple: `>=2.15.0 <3.0.0`.
- `bridge` (optional)
**Type**: `boolean`
If set to `true`, it will check if the current Nuxt version supports `bridge`.
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
### `hasNuxtCompatibility`
Checks if constraints are met for the current Nuxt version. Return `true` if all constraints are met, otherwise returns `false`. Nuxt 2 version also checks for `bridge` support.
#### Type
```ts
async function hasNuxtCompatibility(
constraints: NuxtCompatibility,
nuxt?: Nuxt
): Promise<boolean>;
interface NuxtCompatibility {
nuxt?: string;
bridge?: boolean;
}
```
#### Parameters
##### `constraints`
**Type**: `NuxtCompatibility`
**Default**: `{}`
Constraints to check for. It accepts the following properties:
- `nuxt` (optional)
2023-08-01 12:35:59 +00:00
**Type**: `string`
2023-08-01 12:27:51 +00:00
Nuxt version in semver format. Versions may be defined in Node.js way, for exmaple: `>=2.15.0 <3.0.0`.
- `bridge` (optional)
**Type**: `boolean`
If set to `true`, it will check if the current Nuxt version supports `bridge`.
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
### `isNuxt2`
Checks if the current Nuxt version is 2.x.
#### Type
```ts
function isNuxt2(nuxt?: Nuxt): boolean;
```
#### Parameters
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
### `isNuxt3`
Checks if the current Nuxt version is 3.x.
#### Type
```ts
function isNuxt3(nuxt?: Nuxt): boolean;
```
#### Parameters
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
### `getNuxtVersion`
Returns the current Nuxt version.
#### Type
```ts
function getNuxtVersion(nuxt?: Nuxt): string;
```
#### Parameters
##### `nuxt`
**Type**: `Nuxt`
**Default**: `useNuxt()`
Nuxt instance. If not provided, it will be retrieved from the context via `useNuxt()` call.
2023-07-28 14:36:01 +00:00
## Auto-imports
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/imports.ts)
### `addImports`
Add imports to the Nuxt application. It makes your imports available in the Nuxt application without the need to import them manually.
#### Type
```ts
function addImports (imports: Import | Import[]): void
interface Import {
from: string
priority?: number
disabled?: boolean
meta?: {
description?: string
docsUrl?: string
[key: string]: any
}
type?: boolean
typeFrom?: string
name: string
as?: string
}
```
#### Parameters
##### `imports`
**Type**: `Import | Import[]`
**Required**: `true`
An object or an array of objects with the following properties:
- `from` (required)
**Type**: `string`
Module specifier to import from.
- `priority` (optional)
**Type**: `number`
**Default**: `1`
Priority of the import, if multiple imports have the same name, the one with the highest priority will be used.
- `disabled` (optional)
**Type**: `boolean`
If this import is disabled.
- `meta` (optional)
**Type**: `object`
Metadata of the import.
- `meta.description` (optional)
**Type**: `string`
Short description of the import.
- `meta.docsUrl` (optional)
**Type**: `string`
URL to the documentation.
- `meta[key]` (optional)
**Type**: `any`
Additional metadata.
- `type` (optional)
**Type**: `boolean`
If this import is a pure type import.
- `typeFrom` (optional)
**Type**: `string`
Using this as the from when generating type declarations.
- `name` (required)
**Type**: `string`
Import name to be detected.
- `as` (optional)
**Type**: `string`
Import as this name.
#### Examples
```ts
import { defineNuxtModule, addImports, createResolver } from '@nuxt/kit'
// creds: https://github.com/pi0/storyblok-nuxt
export default defineNuxtModule({
setup(options, nuxt) {
const names = [
"useStoryblok",
"useStoryblokApi",
"useStoryblokBridge",
"renderRichText",
"RichTextSchema"
];
names.forEach((name) =>
addImports({ name, as: name, from: "@storyblok/vue" })
);
}
})
```
### `addImportsDir`
Add imports from a directory to the Nuxt application. It will automatically import all files from the directory and make them available in the Nuxt application without the need to import them manually.
#### Type
```ts
function addImportsDir (dirs: string | string[], opts?: { prepend?: boolean })
```
#### Parameters
##### `dirs`
**Type**: `string | string[]`
**Required**: `true`
A string or an array of strings with the path to the directory to import from.
##### `opts`
**Type**: `{ prepend?: boolean }`
**Default**: `{}`
Options to pass to the import. If `prepend` is set to `true`, the imports will be prepended to the list of imports.
#### Examples
```ts
import { defineNuxtModule, addImportsDir, createResolver } from '@nuxt/kit'
// creds: https://github.com/vueuse/motion/tree/main/src/nuxt
export default defineNuxtModule<ModuleOptions>({
meta: {
name: '@vueuse/motion',
configKey: 'motion',
},
defaults: {},
setup(options, nuxt) {
const { resolve } = createResolver(import.meta.url)
addImportsDir(resolve('./runtime/composables'))
},
})
```
### `addImportsSources`
Add listed imports to the Nuxt application.
#### Type
```ts
function addImportsSources (importSources: ImportSource | ImportSource[])
interface Import {
from: string
priority?: number
disabled?: boolean
meta?: {
description?: string
docsUrl?: string
[key: string]: any
}
type?: boolean
typeFrom?: string
name: string
as?: string
}
interface ImportSource extends Import {
imports: (PresetImport | ImportSource)[]
}
type PresetImport = Omit<Import, 'from'> | string | [name: string, as?: string, from?: string]
```
#### Parameters
##### `importSources`
**Type**: `ImportSource | ImportSource[]`
**Required**: `true`
An object or an array of objects with the following properties:
- `imports` (required)
**Type**: `PresetImport | ImportSource[]`
**Required**: `true`
An object or an array of objects, which can be import names, import objects or import sources.
- `from` (required)
**Type**: `string`
Module specifier to import from.
- `priority` (optional)
**Type**: `number`
**Default**: `1`
Priority of the import, if multiple imports have the same name, the one with the highest priority will be used.
- `disabled` (optional)
**Type**: `boolean`
If this import is disabled.
- `meta` (optional)
**Type**: `object`
Metadata of the import.
- `meta.description` (optional)
**Type**: `string`
Short description of the import.
- `meta.docsUrl` (optional)
**Type**: `string`
URL to the documentation.
- `meta[key]` (optional)
**Type**: `any`
Additional metadata.
- `type` (optional)
**Type**: `boolean`
If this import is a pure type import.
- `typeFrom` (optional)
**Type**: `string`
Using this as the from when generating type declarations.
- `name` (required)
**Type**: `string`
Import name to be detected.
- `as` (optional)
**Type**: `string`
Import as this name.
#### Examples
```ts
import { defineNuxtModule, addImportsSources } from '@nuxt/kit'
// creds: https://github.com/elk-zone/elk
export default defineNuxtModule({
setup() {
// add imports from h3 to make them autoimported
addImportsSources({
from: 'h3',
imports: ['defineEventHandler', 'getQuery', 'getRouterParams', 'readBody', 'sendRedirect'] as Array<keyotypeof import('h3')>,
})
}
})
```
2023-07-28 14:36:01 +00:00
## Components
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/components.ts)
### `addComponentsDir`
Register a directory to be scanned for components and imported only when used. Keep in mind, that this does not register components globally, until you specify `global: true` option.
#### Type
```ts
async function addComponentsDir (dir: ComponentsDir): void
interface ComponentsDir {
path: string
pattern?: string | string[]
ignore?: string[]
prefix?: string
pathPrefix?: boolean
enabled?: boolean
prefetch?: boolean
preload?: boolean
isAsync?: boolean
extendComponent?: (component: Component) => Promise<Component | void> | (Component | void)
global?: boolean
island?: boolean
watch?: boolean
extensions?: string[]
transpile?: 'auto' | boolean
}
interface Component {
pascalName: string
kebabName: string
export: string
filePath: string
shortPath: string
chunkName: string
prefetch: boolean
preload: boolean
global?: boolean
island?: boolean
mode?: 'client' | 'server' | 'all'
priority?: number
}
```
#### Parameters
##### `dir`
**Type**: `ComponentsDir`
**Required**: `true`
An object with the following properties:
- `path` (required)
**Type**: `string`
Path (absolute or relative) to the directory containing your components.
You can use Nuxt aliases (~ or @) to refer to directories inside project or directly use an npm package path similar to require.
- `pattern` (optional)
**Type**: `string | string[]`
Accept Pattern that will be run against specified path.
- `ignore` (optional)
**Type**: `string[]`
Ignore patterns that will be run against specified path.
- `prefix` (optional)
**Type**: `string`
Prefix all matched components with this string.
- `pathPrefix` (optional)
**Type**: `boolean`
Prefix component name by its path.
- `enabled` (optional)
**Type**: `boolean`
Ignore scanning this directory if set to `true`.
- `prefetch` (optional)
**Type**: `boolean`
These properties (prefetch/preload) are used in production to configure how components with Lazy prefix are handled by webpack via its magic comments.
Learn more on [webpack documentation](https://webpack.js.org/api/module-methods/#magic-comments)
- `preload` (optional)
**Type**: `boolean`
These properties (prefetch/preload) are used in production to configure how components with Lazy prefix are handled by webpack via its magic comments.
Learn more on [webpack documentation](https://webpack.js.org/api/module-methods/#magic-comments)
- `isAsync` (optional)
**Type**: `boolean`
This flag indicates, component should be loaded async (with a separate chunk) regardless of using Lazy prefix or not.
- `extendComponent` (optional)
**Type**: `(component: Component) => Promise<Component | void> | (Component | void)`
A function that will be called for each component found in the directory. It accepts a component object and should return a component object or a promise that resolves to a component object.
- `global` (optional)
**Type**: `boolean`
**Default**: `false`
If enabled, registers components to be globally available.
- `island` (optional)
**Type**: `boolean`
If enabled, registers components as islands.
- `watch` (optional)
**Type**: `boolean`
Watch specified path for changes, including file additions and file deletions.
- `extensions` (optional)
**Type**: `string[]`
Extensions supported by Nuxt builder.
- `transpile` (optional)
**Type**: `'auto' | boolean`
Transpile specified path using build.transpile. If set to `'auto'`, it will set `transpile: true` if `node_modules/` is in path.
### `addComponent`
Register a component to be automatically imported.
#### Type
```ts
async function addComponent (opts: AddComponentOptions): void
interface AddComponentOptions {
name: string,
filePath: string,
pascalName?: string,
kebabName?: string,
export?: string,
shortPath?: string,
chunkName?: string,
prefetch?: boolean,
preload?: boolean,
global?: boolean,
island?: boolean,
mode?: 'client' | 'server' | 'all',
priority?: number,
}
```
#### Parameters
##### `opts`
**Type**: `AddComponentOptions`
**Required**: `true`
An object with the following properties:
- `name` (required)
**Type**: `string`
Component name.
- `filePath` (required)
**Type**: `string`
Path to the component.
- `pascalName` (optional)
**Type**: `pascalCase(opts.name)`
Pascal case component name. If not provided, it will be generated from the component name.
- `kebabName` (optional)
**Type**: `kebabCase(opts.name)`
Kebab case component name. If not provided, it will be generated from the component name.
- `export` (optional)
**Type**: `string`
**Default**: `'default'`
Specify named or default export. If not provided, it will be set to `'default'`.
- `shortPath` (optional)
**Type**: `string`
Short path to the component. If not provided, it will be generated from the component path.
- `chunkName` (optional)
**Type**: `string`
**Default**: `'components/' + kebabCase(opts.name)`
Chunk name for the component. If not provided, it will be generated from the component name.
- `prefetch` (optional)
**Type**: `boolean`
These properties (prefetch/preload) are used in production to configure how components with Lazy prefix are handled by webpack via its magic comments.
Learn more on [webpack documentation](https://webpack.js.org/api/module-methods/#magic-comments)
- `preload` (optional)
**Type**: `boolean`
These properties (prefetch/preload) are used in production to configure how components with Lazy prefix are handled by webpack via its magic comments.
Learn more on [webpack documentation](https://webpack.js.org/api/module-methods/#magic-comments)
- `global` (optional)
**Type**: `boolean`
**Default**: `false`
If enabled, registers component to be globally available.
- `island` (optional)
**Type**: `boolean`
If enabled, registers component as island. You can read more about islands in [<NuxtIsland/>](/docs/api/components/nuxt-island#nuxtisland) component description.
- `mode` (optional)
**Type**: `'client' | 'server' | 'all'`
**Default**: `'all'`
This options indicates if component should render on client, server or both. By default, it will render on both client and server.
- `priority` (optional)
**Type**: `number`
**Default**: `1`
Priority of the component, if multiple components have the same name, the one with the highest priority will be used.
2023-07-28 14:36:01 +00:00
## Context
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/context.ts)
::alert{type=info}
Keep in mind, Nuxt already pass itself as the second argument to the `setup` function, so you can use it instead of `useNuxt()` call. `useNuxt()` and `tryUseNuxt()` calls are useful when you want to access Nuxt in separate functions. You can look at [Nuxt Site Config](https://github.com/harlan-zw/nuxt-site-config) as a reference.
::
### `useNuxt()`
Get the Nuxt instance from the context. It will throw an error if Nuxt is not available.
#### Type
```ts
function useNuxt(): Nuxt
interface Nuxt {
options: NuxtOptions
hooks: Hookable<NuxtHooks>
hook: Nuxt['hooks']['hook']
callHook: Nuxt['hooks']['callHook']
addHooks: Nuxt['hooks']['addHooks']
ready: () => Promise<void>
close: () => Promise<void>
server?: any
vfs: Record<string, string>
apps: Record<string, NuxtApp>
}
```
#### Examples
::code-group
```ts [setupTranspilation.ts]
// https://github.com/Lexpeartha/nuxt-xstate/blob/main/src/parts/transpile.ts
import { useNuxt } from '@nuxt/kit'
export const setupTranspilation = () => {
const nuxt = useNuxt()
nuxt.options.build.transpile = nuxt.options.build.transpile || []
if (nuxt.options.builder === '@nuxt/webpack-builder') {
nuxt.options.build.transpile.push(
'xstate',
)
}
}
```
```ts [module.ts]
import { useNuxt } from '@nuxt/kit'
import { setupTranspilation } from './setupTranspilation'
export default defineNuxtModule({
setup() {
setupTranspilation()
}
})
```
::
## `tryUseNuxt()`
Get the Nuxt instance from the context. It will return `null` if Nuxt is not available.
#### Type
```ts
function tryUseNuxt(): Nuxt | null
interface Nuxt {
options: NuxtOptions
hooks: Hookable<NuxtHooks>
hook: Nuxt['hooks']['hook']
callHook: Nuxt['hooks']['callHook']
addHooks: Nuxt['hooks']['addHooks']
ready: () => Promise<void>
close: () => Promise<void>
server?: any
vfs: Record<string, string>
apps: Record<string, NuxtApp>
}
```
#### Examples
::code-group
```ts [requireSiteConfig.ts]
// https://github.com/harlan-zw/nuxt-site-config/blob/main/test/assertions.test.ts
import { tryUseNuxt } from '@nuxt/kit'
interface SiteConfig {
title: string
}
export const requireSiteConfig = (): SiteConfig => {
const nuxt = tryUseNuxt()
if (!nuxt) {
return { title: null }
}
return nuxt.options.siteConfig
}
```
```ts [module.ts]
import { useNuxt } from '@nuxt/kit'
import { requireSiteConfig } from './requireSiteConfig'
export default defineNuxtModule({
setup(_, nuxt) {
const config = requireSiteConfig()
nuxt.options.app.head.title = config.title
}
})
```
::
2023-07-28 14:36:01 +00:00
## Pages
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/pages.ts)
- `extendPages (callback: pages => void)`
- `extendRouteRules (route: string, rule: NitroRouteConfig, options: ExtendRouteRulesOptions)`
- `addRouteMiddleware (input: NuxtMiddleware | NuxtMiddleware[], options: AddRouteMiddlewareOptions)`
2023-07-28 14:36:01 +00:00
## Plugins
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/plugin.ts)
- `addPlugin(pluginOptions, { append? })`
- `addPluginTemplate(pluginOptions, { append? })`
2023-07-28 14:36:01 +00:00
## Templates
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/template.ts)
- `addTemplate(templateOptions)`
- `addTypeTemplate(templateOptions)`
- `updateTemplates({ filter?: ResolvedNuxtTemplate => boolean })`
2023-07-28 14:36:01 +00:00
## Nitro
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/nitro.ts)
- `addServerHandler (handler)`
- `addDevServerHandler (handler)`
- `useNitro()` (only usable after `ready` hook)
- `addServerPlugin`
- `addPrerenderRoutes`
2023-07-28 14:36:01 +00:00
## Resolving
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/resolve.ts)
- `resolvePath (path, resolveOptions?)`
- `resolveAlias (path, aliases?)`
- `findPath (paths, resolveOptions?)`
- `createResolver (base)`
2023-07-28 14:36:01 +00:00
## Logging
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/logger.ts)
- `useLogger(scope?)`
2023-07-28 14:36:01 +00:00
## Builder
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/build.ts)
- `extendWebpackConfig(callback, options?)`
- `extendViteConfig(callback, options?)`
- `addWebpackPlugin(webpackPlugin, options?)`
- `addVitePlugin(vitePlugin, options?)`
## Examples
### Accessing Nuxt Vite Config
If you are building an integration that needs access to the runtime Vite or webpack config that Nuxt uses, it is possible to extract this using Kit utilities.
Some examples of projects doing this already:
- [histoire](https://github.com/histoire-dev/histoire/blob/main/packages/histoire-plugin-nuxt/src/index.ts)
- [nuxt-vitest](https://github.com/danielroe/nuxt-vitest/blob/main/packages/nuxt-vitest/src/config.ts)
- [@storybook-vue/nuxt](https://github.com/storybook-vue/nuxt/blob/main/src/preset.ts)
Here is a brief example of how you might access the Vite config from a project; you could implement a similar approach to get the webpack configuration.
```js
import { loadNuxt, buildNuxt } from '@nuxt/kit'
// https://github.com/nuxt/nuxt/issues/14534
async function getViteConfig() {
const nuxt = await loadNuxt({ cwd: process.cwd(), dev: false, overrides: { ssr: false } })
return new Promise((resolve, reject) => {
nuxt.hook('vite:extendConfig', (config, { isClient }) => {
if (isClient) {
resolve(config)
throw new Error('_stop_')
}
})
buildNuxt(nuxt).catch((err) => {
if (!err.toString().includes('_stop_')) {
reject(err)
}
})
}).finally(() => nuxt.close())
}
const viteConfig = await getViteConfig()
console.log(viteConfig)
```