webpack/examples/stats-detailed/webpack.config.js

10 lines
152 B
JavaScript
Raw Normal View History

const path = require("path");
module.exports = {
output: {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "detailed"
};