mirror of https://github.com/webpack/webpack.git
10 lines
152 B
JavaScript
10 lines
152 B
JavaScript
|
const path = require("path");
|
||
|
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
path: path.join(__dirname, "dist"),
|
||
|
filename: "output.js"
|
||
|
},
|
||
|
stats: "detailed"
|
||
|
};
|