Search Docs
Home > @lynx-js/rspeedy > Filename > bundle
The name of the bundle files.
Signature:
bundle?: string | undefined;
Default values:
'[name].lynx.bundle'
The following placeholder is supported:
[name]
[contenthash]
import { defineConfig } from '@lynx-js/rspeedy' export default defineConfig({ output: { filename: { bundle: '[name].[contenthash].bundle', }, }, })
import { defineConfig } from '@lynx-js/rspeedy' export default defineConfig({ output: { filename: { bundle: '[name].[contenthash:8].bundle', }, }, })