我正在尝试使用以下方法基于变量加载CSS文件:
require('style-loader!../custom2.css')
在这里我想使用'custom2'作为变量,即
const path='custom2';
require('style-loader!../'+ path +'.css')
这不起作用,对此有什么解决方案吗?
答案 0 :(得分:1)
您混合使用了引号字符。
尝试:
require('styleloader!../'+ path +'.css')
或ES6模板字符串:
require(`styleloader!../${path}.css`)