I've an import for an svg sprite in my Reactjs application.
import { ReactComponent as Sprite } from '@namespace/library/dist/specific_theme/assets/sprite.svg'
I'm adding themes now in the project, so I need a dynamic way to make the import but
this approach does not work
import { ReactComponent as Sprite } from '@namespace/library/dist/specific_theme/' + process.env.THEME + '/sprite.svg'
this neither, returning simply a path string (and not the content as with a raw loader within Webpack)
const sprite = require('@namespace/library/dist/specific_theme/' + process.env.THEME + '/sprite.svg')
For specific reasons I'm trying to avoid the use of a raw loader, and currently I do not need it, because svg sprite is loaded perfectly. But adding this multi themes functionality increase complexity. Suggestions?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…