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

15 lines
233 B
JavaScript
Raw Permalink Normal View History

"use strict";
const path = require("path");
2025-11-04 23:22:51 +08:00
/** @type {import("webpack").Configuration} */
const config = {
output: {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "normal"
};
2025-11-04 23:22:51 +08:00
module.exports = config;