[!WARNING] This package is currently experimental. It's not an official Next.js plugin, and is supported by the Rspack team in partnership with Next.js. Help improve Next.js and Rspack by providing feedback at https://github.com/vercel/next.js/discussions/77800
This plugin allows you to use Rspack in place of webpack with Next.js.
npm install next-rspack
or
yarn add next-rspack
Create or update a next.config.js
/next.config.ts
and wrap your existing configuration:
const withRspack = require('next-rspack')
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
}
module.exports = withRspack(nextConfig)
Alternatively, you can use next-compose-plugins
to quickly integrate next-rspack
with other Next.js plugins:
const withPlugins = require('next-compose-plugins')
const withRspack = require('next-rspack')
module.exports = withPlugins([
[withRspack],
// your other plugins here
])