node.js path 模块(路径整合)
path.join()
let result = path.join(‘C:\’www’,’temp’,’index.html’);
console.log(result); //C:’www\temp\index.html
补充 path.isAbsolute()
let result = path.isAbsolute(‘C:\\user\temp\index.html’); //true;// u 有个斜杠是转义
console.log(result);
path.isAbsolute 用来判断一个路径是否为绝对路径
在 webpack.config.js 中输出目录需要引入绝对路径,而不能用相对路径;因为相对的不是你期望的当前脚本所在目录,而是相对于你在哪个目录执行的 webpack 命令,就是 cli 里常说的 current working directory。所以如果当你执行命令的目录和 webpack.config.js 在同一个目录时,没有任何问题。