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.

Entry

The entry configuration is used to set the entry module for Rspack builds.

  • Type:

    type EntryDescription = {
      import: EntryItem;
      runtime?: EntryRuntime;
      chunkLoading?: ChunkLoading;
      asyncChunks?: boolean;
      publicPath?: PublicPath;
      baseUri?: string;
      filename?: EntryFilename;
    };
    
    type EntryObject = {
      [k: string]: EntryItem | EntryDescription;
    };
    
    type Config = {
      entry: EntryItem | EntryObject;
    };
  • Default: ./src/index.js

Single Entry

If you are building a single page application or a library, you will usually only need to set up a single entry point.

To set up a single entry, simply pass the path to the entry module as a string to the entry configuration.

rspack.config.js
module.exports = {
  entry: './src/index.js',
};

The above writing method will automatically set the name of the entry module to main, which is equivalent to the following writing method:

rspack.config.js
module.exports = {
  entry: {
    main: './src/index.js',
  },
};

Path Type

The path of the entry module can be a relative path or an absolute path.

If entry is set as a relative path, Rspack will use the value set by context configuration as the base path, which by default is the current working directory of the Node.js process, namely process.cwd ().

You can also use the path module in Node.js to generate an absolute path and pass it to the entry configuration:

rspack.config.js
const path = require('path');

module.exports = {
  entry: path.join(__dirname, './src/index.js'),
};

Entry Array

When setting the value of an entry, in addition to setting it to string, you can also pass in a string[], meaning that the entry contains multiple entry modules.

For example, the following example will build pre.js and post.js into the output of page.

rspack.config.js
module.exports = {
  entry: {
    page: ['./src/pre.js', './src/post.js'],
  },
};

Multiple modules will be executed sequentially according to the order defined by the array, so the code in pre.js will be executed before the code in post.js.

Multiple Entries

If you need to build multiple entries at once, you should set entry to an object, and each key of the object corresponds to an entry name.

For example, the following example will build page1 and page2 as two entries:

rspack.config.js
module.exports = {
  entry: {
    page1: './src/page1/index.js',
    page2: './src/page2/index.js',
  },
};

Entry Description Object

When you set entry to an object, you can set the value of the entry to a description object. A description object can contain the following properties:

EntryDescription.import

  • Type:

    type EntryItem = string[] | string;
  • Default: './src/index.js'

The path to the entry module.

EntryDescription.runtime

  • Type:

    type EntryRuntime = false | string;
  • Default: undefined

The name of the runtime chunk. When runtime is set, a new runtime chunk will be created. You can also set it to false to avoid a new runtime chunk.

The runtime property is used to set the name of the runtime chunk, for example to set the name of the main entry chunk to 'foo':

rspack.config.js
module.exports = {
  entry: {
    main: {
      import: './src/index.js',
      runtime: 'foo',
    },
  },
};

EntryDescription.chunkLoading

  • Type:

    type ChunkLoading = false | ChunkLoadingType;
    type ChunkLoadingType =
      | ('jsonp' | 'import-scripts' | 'require' | 'async-node' | 'import')
      | string;
  • Default: undefined

How this entry load other chunks.

EntryDescription.asyncChunks

  • Type: boolean
  • Default: true

Whether to create a load-on-demand asynchronous chunk for this entry.

EntryDescription.publicPath

  • Type:

    type PublicPath = 'auto' | string;
  • Default: undefined

The publicPath of the resource referenced by this entry.

EntryDescription.baseUri

  • Type: string
  • Default: undefined

The baseURI of the resource referenced by this entry.

EntryDescription.filename

  • Type: string
  • Default: undefined

The filename of the entry chunk.

EntryDescription.library

The format of the chunk generated by this entry as a library, for detailed configuration, see output.library.