Failed to decode downloaded font前端图标展示不出来

前端项目放在java的resources下面然后打包到测试发现图标展示不出来:
Failed to decode downloaded font前端图标展示不出来_第1张图片
然后控制台报错:
在这里插入图片描述
网上说是使用maven打包的时候将fonts下文件损坏了
Failed to decode downloaded font前端图标展示不出来_第2张图片
解决:在主pom里面编辑打包项,并将font分出来false进行打包,解决

 <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <encoding>utf-8</encoding>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <resources>
                        <resource>
                            <directory>src/main/resources</directory>
                            <filtering>true</filtering>
                            <excludes>
                                <exclude>**/font/**
                                **/fonts/**
                            
                        
                        
                            src/main/resources
                            false
                            
                                **/font/**
                                **/fonts/**
                            
                        
                    
                    utf-8
                    true
                
            

        
    

最后重新打包,然后启动项目,注意要ctrl+f5强制刷新一下…

你可能感兴趣的:(前端)