Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
3 contributors

Users who have contributed to this file

@Travmatth @sokra @ooflorent
24 lines (22 sloc) 491 Bytes
"use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
node: {
__dirname: false,
__filename: false
},
entry: {
"dist/banner": ["./index.js"],
vendors: ["./vendors.js"]
},
output: {
filename: "[name].js?value"
},
plugins: [
new webpack.BannerPlugin({
banner:
"fullhash:[fullhash], chunkhash:[chunkhash], name:[name], base:[base], query:[query], file:[file], path:[path], ext:[ext]"
})
]
};
You can’t perform that action at this time.