If you use grunt to build your application, it is possible that the path changes during build. In this case, you need to modify your grunt file as follows:
copy: { main: { files: [{ src: ['fonts/**'], dest: 'dist/fonts/', filter: 'isFile', expand: true, flatten: true }, { src: ['bower_components/font-awesome/fonts/**'], dest: 'dist/css/', filter: 'isFile', expand: true, flatten: false }] } },
Anke Wenz Mar 19 '15 at 9:26 2015-03-19 09:26
source share