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.
The entry
configuration is used to set the entry module for Rspack builds.
Type:
Default: ./src/index.js
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.
The above writing method will automatically set the name of the entry module to main
, which is equivalent to the following writing method:
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:
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
.
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
.
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:
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:
Type:
Default: './src/index.js'
The path to the entry module.
Type:
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'
:
Type:
Default: undefined
How this entry load other chunks.
boolean
true
Whether to create a load-on-demand asynchronous chunk for this entry.
Type:
Default: undefined
The publicPath of the resource referenced by this entry.
string
undefined
The baseURI of the resource referenced by this entry.
string
undefined
The filename of the entry chunk.
The format of the chunk generated by this entry as a library, for detailed configuration, see output.library.