next-rspack
TypeScript icon, indicating that this package has built-in type declarations

15.3.1 • Public • Published

next-rspack (EXPERIMENTAL)

[!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.

Installation

npm install next-rspack

or

yarn add next-rspack

Usage

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)

Usage with next-compose-plugins

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
])

Readme

Keywords

none

Package Sidebar

Install

npm i next-rspack

Weekly Downloads

4,267

Version

15.3.1

License

none

Unpacked Size

1.68 kB

Total Files

4

Last publish

Collaborators

  • vercel-release-bot