Skip to content

Commit 11601c7

Browse files
jesselpalmercaitp
authored andcommitted
docs(app): adds stylesheets to deployment files
1 parent bb2a130 commit 11601c7

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

docs/config/services/deployments/debug.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ module.exports = function debugDeployment(getComponentPath) {
3232
'css/prettify-theme.css',
3333
'css/docs.css',
3434
'css/animations.css',
35-
'font-awesome/css/font-awesome.css'
35+
'font-awesome/css/font-awesome.css',
36+
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
3637
]
3738
};
3839
};

docs/config/services/deployments/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = function defaultDeployment(getComponentPath) {
3333
'css/docs.css',
3434
'css/animations.css',
3535
'font-awesome/css/font-awesome.css',
36-
'http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
36+
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
3737
]
3838
};
3939
};

docs/config/services/deployments/jquery.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ module.exports = function jqueryDeployment(getComponentPath) {
3636
'css/prettify-theme.css',
3737
'css/docs.css',
3838
'css/animations.css',
39-
'font-awesome/css/font-awesome.css'
39+
'font-awesome/css/font-awesome.css',
40+
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
4041
]
4142
};
4243
};

docs/config/services/deployments/production.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ module.exports = function productionDeployment(getVersion) {
3232
stylesheets: [
3333
'css/prettify-theme.css',
3434
'css/docs.css',
35-
'css/animations.css'
35+
'css/animations.css',
36+
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
3637
]
3738
};
38-
};
39+
};

0 commit comments

Comments
 (0)