认识
2024年11月23日
一、认识
output
位于对象最顶级键(key
),包括了一组选项,指示 webpack
如何去输出、以及在哪里输出你的 bundle
、asset
和其他你所打包或使用 webpack
载入的任何内容。
二、语法
const Path = require("path");
module.exports = {
output: {
clean: true,
path: Path.resolve(process.cwd(), "dist"),
filename: "[name]/[name].[contenthash:8].js",
chunkFilename: "[name]/[id].[contenthash:8].js",
}
}