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

12 lines
167 B
JavaScript
Raw Permalink Normal View History

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