Are you an LLM? You can read better optimized documentation at /reference/OutputOptions.postFooter.md for this page in Markdown format
postFooter
- Type:
string| (chunk) =>string|Promise<string> - Optional
Defined in: options/output-options.ts:262
A string to append to the bundle after renderChunk hook and minification.
See output.footer, output.outro as well.
Examples
Build timestamp
js
export default {
output: {
minify: true,
postFooter: `/* built: ${Date.now()} */`,
},
};