我在客户端上使用React,我需要包含来自npm包的css。 在我拿走它们并复制到我当地的导演之前。
我也在工作草案中使用GULP
答案 0 :(得分:4)
您可以使用gulp从node_modules
复制文件作为构建的一部分:
var srcPath = "node_modules/whatever/stylesheets/*.css";
var buildPath = "folder/that/gets/served/to/client";
gulp.task("build-html", function () {
return gulp.src(srcPath).pipe(gulp.dest(buildPath));
});