CC 4.0 License

The content of this section is derived from the content of the following links and is subject to the CC BY 4.0 license.

The following contents can be assumed to be the result of modifications and deletions based on the original contents if not specifically stated.

Optimization

Rspack will select appropriate optimization configuration based on the mode. You can also customize the configuration via optimization.

optimization.removeAvailableModules

  • Type: boolean
  • Default: true

A module can be removed from a Chunk if the module have been included in all of its parent Chunks.

EntryChunk(index.js, a.js, b.js) \ ChunkFoo(b.js, c.js) / EntryChunk2(index.js, a.js, b.js)

In the above example, b.js has already been included in EntryChunk and EntryChunk2, so b.js can be removed from ChunkFoo.

Inconsistent behaviors with Webpack
  • Webpack only enable this optimization in production mode.

optimization.moduleIds

  • Type: 'named' | 'deterministic'
option description
named Use meaningful, easy-to-debug content as id. This option is enabled by default in development mode
deterministic Use the hashed module identifier as the id to benefit from long-term caching. This option is enabled by default in production mode

optimization.chunkIds

  • 类型: 'named' | 'deterministic'
option description
'named' Readable ids for better debugging.
'deterministic' Short numeric ids which will not be changing between compilation. Good for long term caching.
Differences to Webpack
  • Rspack will use deterministic as the default value in produceton mode in the next minor version.

optimization.minimize

Whether to minimize the bundle.

optimization.minimizer

  • Type: Array<Plugin>
  • Default: []

Customize the minimizer. When using a custom minimizer, the built-in minimizer will be disabled.

rspack.config.js
const minifyPlugin = require('@rspack/plugin-minify');
module.exports = {
  context: __dirname,
  target: 'node',
  entry: {
    main: './index.js',
  },
  optimization: {
    minimize: true,
    minimizer: [
      new minifyPlugin({
        minifier: 'terser',
      }),
    ],
  },
};

optimization.removeEmptyChunks

  • Type: boolean
  • Default: true

Remove empty chunks generated in the compilation.

optimization.runtimeChunk

  • Type: boolean
  • Default: true

optimization.sideEffects

{
  "name": "npm module",
  "version": "1.0.0",
  "sideEffects": ["**/src/*.js"]
}

Tells Rspack to recognise the sideEffects flag in package.json or rules to skip over modules which are flagged to contain no side effects when exports are not used.

optimization.sideEffects dependends on builtins.treeShaking to be enabled. This configuration has a build time cost, but eliminating modules has positive impact on performance because of less code generation. Effect of this optimization depends on your codebase.

rspack.config.js
module.exports = {
  //...
  optimization: {
    sideEffects: true,
  },
};

If you only want Rspack use the manual sideEffects flag via (package.json and module.rule.sideEffects) and don't analyse code:

rspack.config.js
module.exports = {
  //...
  optimization: {
    sideEffects: 'flag',
  },
};
Tip

When optimization.sideEffects is true , Rspack will also flag modules as side effect free when they contain only side effect free statements.

optimization.realContentHash

Adds an additional hash compilation pass after the assets have been processed to get the correct asset content hashes. This feature will enable by default in production mode.

If realContentHash is set to false, internal data is used to calculate the hash and it can change when assets are identical in some cases.

rspack.config.js
module.exports = {
  //...
  optimization: {
    realContentHash: true,
  },
};

optimization.splitChunks

Rspack supports you to split Chunk with the optimization.splitChunks configuration item.

See details at SplitChunksPlugin.