examples/stats-minimal/README.md
This configuration will enable the minimal output for the stats report.
You see that everything is working nicely together.
console.log("Hello World!");
"use strict";
const path = require("path");
/** @type {import("webpack").Configuration} */
const config = {
output: {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "minimal"
};
module.exports = config;
/******/ (() => { // webpackBootstrap
/*!********************!*\
!*** ./example.js ***!
\********************/
/*! unknown exports (runtime-defined) */
/*! runtime requirements: */
console.log("Hello World!");
/******/ })()
;
1 asset
1 module
webpack X.X.X compiled successfully