nx/docs/shared/packages/next/next-config-setup.md
Jack Hsu 66eaf2fc74
docs(misc): remove /nx-api pages (#31453)
This PR removes the `/nx-api` pages from `nx-dev`. They are already
redirected from `/nx-api` to either `/technologies` or
`/reference/core-api` URLs.

e.g. `/nx-api/nx` goes to `/reference/core-api/nx` and `/nx-api/react`
goes to `/technologies/react/api`

**Changes**:
- Remove old `nx-api.json` from being generated in
`scripts/documentation/generators/generate-manifests.ts` -- this was
used to generate the sitemap
- Remove `pages/nx-api` from Next.js app since we don't need them
- Remove workaround from link checker
`scripts/documentation/internal-link-checker.ts` -- the angular
rspack/rsbuild and other workarounds are gone now that they are proper
docs in `map.json`
- Update Powerpack/Remote Cache reference docs to exclude API documents
(since they are duplicated in the Intro page) --
`nx-dev/models-document/src/lib/mappings.ts`
- All content in `docs` have been updated with new URL structure

**Note:** Redirects are already handled, and Claude Code was used to
verify the updated `docs/` URLs (see report below). The twelve 404s
links were updated by hand.

## Verification Report

https://gist.github.com/jaysoo/c7863fe7e091cb77929d1976165c357a
2025-06-04 16:57:01 -04:00

135 lines
5.1 KiB
Markdown

---
title: How to configure Next.js plugins
description: A guide for configuring Next.js plugins with Nx
---
# Configuring Next.js plugins
Next.js plugins are configured in the project's `next.config.js` file. Nx adds a its own plugin (`withNx`) to help the Next.js application
understand workspace libraries, and other Nx-specific features. See below for an example of the `withNx` plugin that Nx adds by default.
```js
// next.config.js
// ...
module.exports = withNx({
// Nx configuration goes here
nx: {
babelUpwardRootMode: true,
},
// Add Next.js configuration goes here
});
```
This guide contains information on how to configure and compose the Nx plugin with other plugins, such as `@next/mdx`. Note that Nx prior to version 16 is missing the compose utility from the `@nx/next` package, and a workaround will be provided for Nx 15 and prior.
{% callout type="warning" title="Avoid next-compose-plugins" %}
There is a popular package called `next-compose-plugins` that has not been maintained for over two years. This package does not correctly combine plugins in all situations. If you do use it, replace the package with Nx 16's `composePlugins` utility (see below).
{% /callout %}
## `withNx` plugin
The `withNx` Next.js plugin provides integration with Nx, including support for [workspace libraries](/technologies/react/next/api/generators/library), SVGR, and more. It is included by default when you generate a Next.js [application](/technologies/react/next/api/generators/application) with Nx. When you customize your `next.config.js` file, make sure to include the `withNx` plugin.
### Options
#### svgr
Type: `boolean`
Set this to true if you would like to use SVGR. See: https://react-svgr.com/
**Deprecated:** Configure SVGR support in your `next.config.js` file without Nx. This option will be removed in Nx 22. See: https://react-svgr.com/docs/next/
#### babelUpwardRootMode
Type: `boolean`
For a monorepo, set to `true` to incorporate `.babelrc` files from individual libraries into the build. Note, however, that doing so will prevent the application's `.babelrc` settings from being applied to its libraries. It is generally recommended not to enable this option, as it can lead to a lack of consistency throughout the workspace. Instead, the application's `.babelrc` file should include the presets and plugins needed by its libraries directly. For more information on babel root-mode, see here: https://babeljs.io/docs/en/options#rootmode
Set this to `true` if you want `.babelrc` from libraries to be used in a monorepo. Note that setting this to `true` means the application's `.babelrc` will not apply to libraries, and it is recommended not to use this option as it may lead to inconsistency in the workspace. Instead, add babel presets/plugins required by libraries directly to the application's `.babelrc` file. See: https://babeljs.io/docs/en/options#rootmode
## Composing plugins using `composePlugins` utility (Nx 16 and later)
Since Nx 16, we provide a `composePlugins` utility function that helps users combine multiple Next.js plugins together.
```js
// next.config.js
const { composePlugins, withNx } = require('@nx/next');
/**
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
**/
const nextConfig = {
nx: {
svgr: true,
babelUpwardRootMode: true,
},
// Add Next.js configuration here
};
const plugins = [
// Add more Next.js plugins to this list if needed.
withNx,
];
module.exports = composePlugins(...plugins)(nextConfig);
```
If you want to add additional plugins, say [`@next/mdx`](https://www.npmjs.com/package/@next/mdx), you can add it to the plugins list.
```js
const plugins = [
// Add more Next.js plugins to this list if needed.
require('@next/mdx')(),
withNx,
];
module.exports = composePlugins(...plugins)(nextConfig);
```
This the exported configuration will correctly call each plugin in order and apply their configuration changes to the final object. Note that `composePlugins` function will return an async function, so if you need to debug the configuration you can add a debug plugin as follows.
```js
module.exports = composePlugins(...plugins, function debug(config) {
// The debug plugin will be called last
console.log({ config });
return config;
})(nextConfig);
```
## Manually composing plugins (Nx 15 and prior)
If you are not on Nx 16 and later versions, the `composePlugins` utility is not available. However, you can use the workaround below to use multiple plugins.
```js
// next.config.js
// ...
/**
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
**/
const nextConfig = {
// ...
};
const plugins = [
// Your plugins exlcuding withNx
];
module.exports = async (phase, context) => {
let updatedConfig = plugins.reduce((acc, fn) => fn(acc), nextConfig);
// Apply the async function that `withNx` returns.
updatedConfig = await withNx(updatedConfig)(phase, context);
// If you have plugins that has to be added after Nx you can do that here.
// For example, Sentry needs to be added last.
const { withSentryConfig } = require('@sentry/nextjs');
updatedConfig = withSentryConfig(updatedConfig);
return updatedConfig;
};
```