I am using the Google font, which I declared in the file .scss:
@import "../../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap";
@import "../../bower_components/font-awesome/scss/font-awesome";
@import url(http://fonts.googleapis.com/css?family=Quicksand:400,300,700);
@import 'common';
It works when the project is not built. But when I create it (uglify / minify). He does not work.
Before building a project:

After creating the project:

I used yoman for school. These are the tasks that are performed in the 'build':
grunt.registerTask('build', [
'clean:dist',
'wiredep',
'useminPrepare',
'concurrent:dist',
'autoprefixer',
'concat',
'ngAnnotate',
'copy:dist',
'cdnify',
'cssmin',
'uglify',
'filerev',
'usemin',
'htmlmin'
]);
One of them must somehow block the Google font.
source
share