mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fonts are served locally
This commit is contained in:
parent
7c483e2db9
commit
1ad0d1afba
22 changed files with 24 additions and 45 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -114,9 +114,13 @@ module.exports = function (grunt) {
|
|||
src : 'UI/**/*.jpg',
|
||||
dest: '_output/'
|
||||
},
|
||||
fonts : {
|
||||
fontAwesome : {
|
||||
src : 'UI/**/FontAwesome/*.*',
|
||||
dest: '_output/'
|
||||
},
|
||||
fonts : {
|
||||
src : 'UI/**/fonts/*.*',
|
||||
dest: '_output/'
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -153,6 +157,10 @@ module.exports = function (grunt) {
|
|||
files: '<%= copy.jpg.src %>',
|
||||
tasks: ['copy:jpg']
|
||||
},
|
||||
copyFontAwesome : {
|
||||
files: '<%= copy.fontAwesome.src %>',
|
||||
tasks: ['copy:fontAwesome']
|
||||
},
|
||||
copyFonts : {
|
||||
files: '<%= copy.fonts.src %>',
|
||||
tasks: ['copy:fonts']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue