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

12 lines
166 B
JavaScript
Raw Normal View History

"use strict";
const path = require("path");
module.exports = {
2023-06-21 08:38:41 +08:00
output: {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "minimal"
2023-06-21 08:38:41 +08:00
};