Failed to decode downloaded font ,浏览器 console 中报警告信息,这里记录一下解决方案

错误问题:
	谷歌浏览器 console 中报警告信息:
	cartshow:1 Failed to decode downloaded font: http://localhost:8081/static/frontpage/font/fontawesome-webfont.woff?v=4.1.0

Failed to decode downloaded font ,浏览器 console 中报警告信息,这里记录一下解决方案_第1张图片

原因:

网上说是由于使用 maven 的 resource 插件开启 filtering 功能后,会破坏有二进制内容的文件。

解决方案:

我把我的 jar 包里面的代码贴出来,亲测可用


            
                src/main/resources
                true
                
                    **/*.properties
                    **/*.html
                    **/*.js
                    **/*.css
                    **/*.xml
                
                
                    **/*.ttf
                    **/*.woff
                
            
            
                src/main/resources
                false
                
                    **/*.ttf
                    **/*.woff
                
            

你可能感兴趣的:(bug合集,vue.js,javascript,bootstrap,node.js,css)