2019-01-23 16:05:05 +01:00
|
|
|
// New copy task for font files and config.json.
|
2018-06-07 11:22:51 +02:00
|
|
|
module.exports = {
|
2018-07-26 11:32:11 +02:00
|
|
|
// Override Ionic copyFonts task to exclude Roboto and Noto fonts.
|
|
|
|
copyFonts: {
|
|
|
|
src: ['{{ROOT}}/node_modules/ionicons/dist/fonts/**/*'],
|
|
|
|
dest: '{{WWW}}/assets/fonts'
|
|
|
|
},
|
2018-06-07 11:22:51 +02:00
|
|
|
copyFontAwesome: {
|
|
|
|
src: ['{{ROOT}}/node_modules/font-awesome/fonts/**/*'],
|
|
|
|
dest: '{{WWW}}/assets/fonts'
|
2019-01-23 16:05:05 +01:00
|
|
|
},
|
|
|
|
copyConfig: {
|
|
|
|
src: ['{{ROOT}}/src/config.json'],
|
|
|
|
dest: '{{WWW}}/'
|
2018-06-07 11:22:51 +02:00
|
|
|
}
|
|
|
|
};
|