Skip to content

Commit

Permalink
Merge pull request #340 from vasiakorobkin/404_webfonts
Browse files Browse the repository at this point in the history
fix: 404 error for fontawesome-webfont on local example server
  • Loading branch information
fzaninotto committed Mar 5, 2015
2 parents aae5145 + f3719da commit 10608f3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ module.exports = function (grunt) {
dest: 'examples/blog/build/',
expand: true
},
assets_dev: {
cwd: 'assets/',
src: ['**'],
dest: 'examples/blog/assets/',
expand: true
},
js_dev: {
src: 'build/ng-admin.min.js',
dest: 'examples/blog/build/ng-admin.js'
Expand Down Expand Up @@ -147,7 +153,7 @@ module.exports = function (grunt) {
},
sass: {
files: ['src/sass/*.scss'],
tasks: ['compass:dev', 'concat:css', 'copy:fonts_dev', 'copy:css_dev'],
tasks: ['compass:dev', 'concat:css', 'copy:fonts_dev', 'copy:assets_dev', 'copy:css_dev'],
options: {
atBegin: true,
livereload: true
Expand Down

0 comments on commit 10608f3

Please sign in to comment.