Skip to content

Commit ed61fed

Browse files
authored
Merge pull request #17 from lhsazevedo/favicon
Add Jetstream favicon
2 parents 29a66fe + ed0437a commit ed61fed

File tree

7 files changed

+47
-11
lines changed

7 files changed

+47
-11
lines changed

.vuepress/config.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,7 @@ module.exports = {
33
description: "Beautifully designed application scaffolding for Laravel",
44
base: '/',
55

6-
head: [
7-
[
8-
'link',
9-
{
10-
href:
11-
'https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,800,800i,900,900i',
12-
rel: 'stylesheet',
13-
type: 'text/css',
14-
},
15-
],
16-
],
6+
head: require('./head'),
177

188
themeConfig: {
199
logo: '/assets/img/logo.svg',

.vuepress/head.js

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
module.exports = [
2+
[
3+
'link',
4+
{
5+
href:
6+
'https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,800,800i,900,900i',
7+
rel: 'stylesheet',
8+
type: 'text/css',
9+
},
10+
], [
11+
'link',
12+
{
13+
rel: 'apple-touch-icon',
14+
sizes: '180x180',
15+
href: '/assets/img/apple-touch-icon.png?v=00aYpBgAp5'
16+
}
17+
], [
18+
'link',
19+
{
20+
rel: 'icon',
21+
type: 'image/png',
22+
sizes: '32x32',
23+
href: '/assets/img/favicon-32x32.png?v=00aYpBgAp5'
24+
}
25+
], [
26+
'link',
27+
{
28+
rel: 'icon',
29+
type: 'image/png',
30+
sizes: '16x16',
31+
href: '/assets/img/favicon-16x16.png?v=00aYpBgAp5'
32+
}
33+
], [
34+
'link',
35+
{
36+
rel: 'shortcut icon',
37+
href: '/assets/img/favicon.ico?v=00aYpBgAp5'
38+
}
39+
], [
40+
'meta',
41+
{
42+
name: 'theme-color',
43+
content: '#ffffff'
44+
}
45+
],
46+
]
2.99 KB
Loading
880 Bytes
Loading
1.28 KB
Loading
14.7 KB
Binary file not shown.

.vuepress/public/favicon.ico

14.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)