References to font (font-awesome) resources are not updated in yeoman/angular grunt build

前端 未结 3 827
小鲜肉
小鲜肉 2021-02-06 16:25

I\'m aware of the SO threads about this (I\'ve linked them below), but unfortunately I couldn\'t solve this with them, so please allow me this question :-)

I\'ve bootst

3条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-06 17:11

    I have not run into this problem probably because I use relative path to my font files and the same path works without modifications when I build a dist. I just have one copy task that does:

    copy: {
          fonts: {
            src: 'fonts/*',
            dest: 'dist/',
          },
    ...
    

提交回复
热议问题