在Webpack CopyPlugin中添加所有嵌套目录和所述嵌套目录的文件的模式是什么?
directory
-- subdirectory-1
---- file-1.ext
-- subdirectory-2
---- file-2.ext
字符串
所需构建输出
lib
-- directory
---- subdirectory-1
------ file-1.ext
---- subdirectory-2
------ file-2.ext
型
我在webpack CopyPlugin config中尝试过这个:
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, "src/styles/directory"),
to: "./lib/styles/directory/[folder]/[name][ext]",
},
],
}),
型
1条答案
按热度按时间sczxawaw1#
在
to
选项文档中,只需指定它的相对路径。例如:
项目结构:
字符串
webpack.config.js
:型
构建日志:
型
package.json
:型