Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...