MOBILE-2839 config: Copy config.json to www
parent
9654fcfbbb
commit
2a8c0986c6
|
@ -1,4 +1,4 @@
|
||||||
// New copy task for font files
|
// New copy task for font files and config.json.
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// Override Ionic copyFonts task to exclude Roboto and Noto fonts.
|
// Override Ionic copyFonts task to exclude Roboto and Noto fonts.
|
||||||
copyFonts: {
|
copyFonts: {
|
||||||
|
@ -8,5 +8,9 @@ module.exports = {
|
||||||
copyFontAwesome: {
|
copyFontAwesome: {
|
||||||
src: ['{{ROOT}}/node_modules/font-awesome/fonts/**/*'],
|
src: ['{{ROOT}}/node_modules/font-awesome/fonts/**/*'],
|
||||||
dest: '{{WWW}}/assets/fonts'
|
dest: '{{WWW}}/assets/fonts'
|
||||||
|
},
|
||||||
|
copyConfig: {
|
||||||
|
src: ['{{ROOT}}/src/config.json'],
|
||||||
|
dest: '{{WWW}}/'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
This folder only contains compiled code and assets. Please do not modify files in this folder, the app code is in the "src" folder.
|
This folder only contains compiled code and assets. Please do not modify files in this folder, the app code is in the "src" folder.
|
||||||
|
|
||||||
|
The config.json values are ignored by the app. This file is informative for Continous Integration processes used by Moodle HQ.
|
||||||
|
|
Loading…
Reference in New Issue