mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 18:23:08 +02:00
7 lines
272 B
TypeScript
7 lines
272 B
TypeScript
|
import * as webpack from 'webpack';
|
||
|
|
||
|
export default version => new webpack.BannerPlugin({
|
||
|
banner: `Misskey v${version} - built at ${new Date()} | (c) syuilo 2014-2017
|
||
|
hash:[hash], chunkhash:[chunkhash], name:[name], filebase:[filebase], query:[query], file:[file]`
|
||
|
});
|