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

10 lines
148 B
JavaScript

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