Sets the filename of dist files.
After the production build, Rsbuild will add a hash in the middle of the filename by default. If you don't need to add it, you can set output.filenameHash to false
to disable this behavior.
The following are the details of each filename:
js
: The name of the JavaScript file.css
: The name of the CSS style file.svg
: The name of the SVG image.font
: The name of the font file.image
: The name of a non-SVG image.media
: The name of a media asset, such as a video.To set the name of the JavaScript file to [name]_script.js
, use the following configuration:
Usually, we only set the filename hash in the production mode (i.e., when process.env.NODE_ENV === 'production'
).
If you set the filename hash in the development mode, it may cause HMR to fail (especially for CSS files). This is because every time the file content changes, the hash value changes, preventing tools like mini-css-extract-plugin from reading the latest file content.
When you import a module via dynamic import, the module will be bundled into a single file, and its default naming rules are as follows:
dist/static/js/async/src_add_ts.js
.dist/static/js/async/798.27e3083e.js
. This is to avoid leaking the source code path in the production environment, and the number of characters is also less.If you want to specify a fixed name for the async module, you can use the magic comments provided by the bundler to achieve this, using webpackChunkName
to specify the module name:
After specifying the module name as above, the generated file will be dist/static/js/async/my-chunk-name.js
.