将动态变量分配给样式加载器路径

时间:2018-08-09 09:48:18

标签: javascript angular webpack

我正在尝试使用以下方法基于变量加载CSS文件:

require('style-loader!../custom2.css')

在这里我想使用'custom2'作为变量,即

const path='custom2';
require('style-loader!../'+ path +'.css')

这不起作用,对此有什么解决方案吗?

1 个答案:

答案 0 :(得分:1)

您混合使用了引号字符。

尝试:

require('styleloader!../'+ path +'.css')

或ES6模板字符串:

require(`styleloader!../${path}.css`)